I am trying to automated the process of logging in to a website, and downloading data using Selenium + Python. The data is visible on webpage in a table format, each row represents a folder, we need to click the row and then the files in the folder appear.
I am using Selenium + Python.
The issue is to select a specific row in table, I need either xpath, id, link text etc, but when i do page source, table is not visible, when I right click the table I do not get "Inspect" element option.
The table is dynamically created ( as in the rows will change if any user created a new folder). Also when I manually click a row of table, it creates a new table with files (in the folder) as rows, but the url of the webpage does not change.
How do i find a specific identifier for my code to 1st select the right row and then click it.