Skip to content

Instantly share code, notes, and snippets.

@amoilanen
Created October 1, 2014 09:14
Show Gist options
  • Save amoilanen/c11c4019e6041d18e954 to your computer and use it in GitHub Desktop.
Save amoilanen/c11c4019e6041d18e954 to your computer and use it in GitHub Desktop.
Minimalistic Selenium scenario for Firefox and Python, can be used to check if the latest Firefox has any problems with Selenium integration
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("http://www.google.com")
driver.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment