Hello,
I am trying to create a process which will scrape new added rows from a data table on the web.
I already have the scraped data table, and I only want to add the values which were added since the last scraping.
For example if I scraped the following dt from the web page :
ID Name
1 Marie
2 Hannah
And after a day, a new row has been added :
ID Name
1 Marie
2 Hannah
3 Paul
I want to add just the 3rd row to the previous DT without having to scrape the whole data table once more.
Thank you for your help