Last active
September 14, 2015 15:31
-
-
Save martinsam/f3cd3300f51fd1ec8f31 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
# coding: utf8 | |
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities | |
desired_cap = { | |
'plateform': "OS X Yosemite", | |
'browserName': "Firefox", | |
'version': "40" | |
} | |
# driver = webdriver.Remote( | |
# command_executor='http://martinsam:[email protected]:80/wd/hub', | |
# desired_capabilities=desired_cap) | |
# driver = webdriver.Firefox() | |
driver.get("http://sessions.certified.opquast.com/debug") | |
login = driver.find_element_by_id("user_login") | |
password = driver.find_element_by_id("user_pass") | |
login.send_keys("xxxx") | |
password.send_keys("xxxx") | |
login.send_keys(Keys.RETURN) | |
driver.find_element_by_name("startQuiz").click() | |
print driver.title | |
driver.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment