Scrape when Web Page Changes - How to Initiate Automation?

Hi All,

Goal: Monitor web page > New Link appears > click link > save text/screen shot info from link > repeat

I’d like to save the info/text within each new link on a specific web page. I believe I have the save text/screen shot part down, but I am unsure how to set up the trigger and automate the process of having Kantu refresh a web page and then recognize that a new link has appeared and then click the link, save the info and then start over.

Do I need to record myself manually refreshing the page and clicking the new link for the beginning of this process and then loop that? Any help is much appreciated.

Thank you much

Thinking off the top of my head, maybe a while loop based off the following pseudo-code:

Label | checkLink
While link1 == link1
Open page in new tab
Close original tab
pause 5000
Store | linkText | link1
End
SaveInfo code here …
GotoLabel | checkLink

Change according to your needs.