im testing a website but it requires me to log in each time, so ive saved the webpage i want to test into a html document.
im trying to open it by driver.get('file:///pp.html') but as of right now it just opens the file then closes, and none of the following code works:
rows = driver.find_elements_by_css_selector("table.aui tr") for row in rows: projectNames = row.find_elements_by_xpath(".//td[1]") for projectName in projectNames: print (projectName.text)