I'm having a strange issue with selenium.
This ruby code:
page.all(:xpath, "//table[3]//tr[last()]//td")
Will get me all the cells of the last row of the third table on a page.
This python code:
driver.find_elements_by_xpath("//table[3]//tr[last()]//td")
Doesn't return anything at all.
Edit: The issue was with the page loading at different speeds. Waiting until the page loaded solved the problem.