Selenium - Web Scrapping a Power BI report

Viewed 27
1 Answers

Anything that is an HTML element and that is present on the page can be inspected. Hit the F12 key on Chrome and hover over the table.

This worked for me

The table is a div with role of "presentation", each row is a div with role of "row".

Related