Data scraping from a website(latest news)

Hi everyone , I want to scrap news from a government website (http://ipindia.nic.in) I need to enter into this website and need to scrap all the latest news in that website.

I need to open each each link and need to scrap the data which is present in it

I need to do this for all the news items present in the website.
Can anyone help me how to solve this.

Hi @ranaprathap928

You should look into the Data Scraping capability of Studio. It looks like you should be able to use it to extract all links from all pages quite well. This will output a DataTable with the links.

You would then use the For Each Row activity to loop over each link, open it, scrap the data you want, and maybe add the content to a new column in the same data table (if you wish).