Skip to content

Instantly share code, notes, and snippets.

@drvinceknight
Created December 23, 2014 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drvinceknight/b9a80c84418f750a632f to your computer and use it in GitHub Desktop.
Save drvinceknight/b9a80c84418f750a632f to your computer and use it in GitHub Desktop.
from selenium import webdriver
browser = webdriver.Firefox() # Open the browser
browser.get('http://0.0.0.0:4000/') # Go to the address of the jekyll server
assert 'How to write tests' in browser.title # This checks that the required title is in browser title
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment