Skip to content

Instantly share code, notes, and snippets.

@Khrol
Created June 9, 2014 14:03
Show Gist options
  • Select an option

  • Save Khrol/67de1980c431c9eb76cc to your computer and use it in GitHub Desktop.

Select an option

Save Khrol/67de1980c431c9eb76cc to your computer and use it in GitHub Desktop.
from selenium.webdriver import Firefox
from selenium.webdriver.common.by import By
driver = Firefox()
driver.get('http://ya.ru')
element = driver.find_element(By.XPATH, 'id("mail")/a')
print element.get_attribute('href')
driver.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment