Finding Elements
XPaths
driver.find_element_by_xpath("//tag[@id="id"]/tag/anothertag")option = driver.find_element... option.click()
Get all links on page
elems = driver.find_elements_by_xpath("//a[@href]")
for elem in elems:
print elem.get_attribute("href")Last updated