I came into a problem automating this project where I have to extract data from an excel sheet.
Firstly, I have to open the Hyperlinks given in column Date like November 2020, etc.
Then, from that hyperlink, I have to extract data.
I am not able to loop through the table so that it clicks on every hyperlink and extracts the data.
Please give a solution.
And from that firstcolumn you will get the hyper link text. Using the below selectors you can change the ‘November 2007’ to a variable and get the value from the table row first column.
<html title='FII & DII Trading Activity in Cash, Futures and Options, MF SEBI & FII SEBI Daily Trends Stocks Data' />
<webctrl aaname='November 2007' parentid='pficash' tag='A' />
Hi @Prashant_Singh26
I got the issue you are facing…
Firstly while scraping the data… Instead of clicking on the November link… Scrape the URL of November…
Later you navigate to all the URLs in a for each and extract the internal data inside each hyperlink…
Let me know if it helps you…