Skip to content

Instantly share code, notes, and snippets.

@danielsamuels
Created May 12, 2015 09:43
Show Gist options
  • Save danielsamuels/a39e0fef4e15d2ab04b5 to your computer and use it in GitHub Desktop.
Save danielsamuels/a39e0fef4e15d2ab04b5 to your computer and use it in GitHub Desktop.
from selenium import webdriver
from selenium.webdriver.support import expected_conditions as EC
driver = webdriver.Firefox()
driver.get('http://google.com')
# Log in to the developer console.
driver.find_element_by_id('Email').send_keys(args.google_email)
driver.find_element_by_id('Passwd').send_keys(args.google_password)
driver.find_element_by_id('Passwd').send_keys(Keys.RETURN)
# Create the initial project.
elem = WebDriverWait(driver, 45).until(
EC.presence_of_element_located((By.ID, 'projects-create'))
)
elem.click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment