Created
May 12, 2015 09:43
-
-
Save danielsamuels/a39e0fef4e15d2ab04b5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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