Skip to content

Instantly share code, notes, and snippets.

@martinsam
Last active September 14, 2015 15:31
Show Gist options
  • Save martinsam/f3cd3300f51fd1ec8f31 to your computer and use it in GitHub Desktop.
Save martinsam/f3cd3300f51fd1ec8f31 to your computer and use it in GitHub Desktop.
# 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