I want to site scrape following web page. However, dynamic website scraping libraries like selenium and puppeteersharp do not pick up items shown on the table of this page (see image).
https://www2.asx.com.au/markets/trade-our-cash-market/todays-announcements
None of the above libs list hrefs under Headline column, although if I try to save a screenshot of this page I can see few table rows.
What is the best way to approach this problem?
why aren't these well established libs not working on this page?
The content you trying to scrape here is inside iframe.
To access it you have to switch to that iframe.
See here example how to switch to iframe with BeautifulSoup.
Here example with Selenium scraping inside iframe.
And here with puppeteersharp