Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@level09
Created December 9, 2012 06:24
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save level09/4243582 to your computer and use it in GitHub Desktop.
Save level09/4243582 to your computer and use it in GitHub Desktop.
python selenium example
from pyvirtualdisplay import Display
from selenium import webdriver
display = Display(visible=0, size=(800, 600))
display.start()
browser = webdriver.Chrome()
browser.get('http://www.google.com')
print browser.title
browser.quit()
display.stop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment