Skip to content

Instantly share code, notes, and snippets.

@hugs
Created May 13, 2010 18:09
Show Gist options
  • Select an option

  • Save hugs/400157 to your computer and use it in GitHub Desktop.

Select an option

Save hugs/400157 to your computer and use it in GitHub Desktop.
Selenium 2 - python
# Using the Selenium 2 egg from here: http://drop.io/84gwpxs
>>> from selenium.firefox.webdriver import WebDriver
>>> browser = WebDriver()
>>> browser.get('http://google.com')
>>> browser.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment