I am attempting to click on a row in a table and keep getting this error even though the table row is clearly in view. After all code to navigate page I have this
parentTable = driver.find_element(By.CSS_SELECTOR , '#ctl00_MainContent_PMList_PMListGrid') row = parentTable.find_element(By.CSS_SELECTOR , '#ctl00_MainContent_PMList_PMListGrid_row0') row.click()
the webpage is made up of several nested tables (can't figure out how to copy code in inspector). I have tried scrolltoview and several other suggestions with no luck. Do I need to create an object for each layer of the table like the above? That's my next thought unless someone else has a better idea.