Skip to content

Instantly share code, notes, and snippets.

@drvinceknight
Created December 23, 2014 17:51
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/d2494432ba5b284869ae to your computer and use it in GitHub Desktop.
Save drvinceknight/d2494432ba5b284869ae 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 'Your awesome title' 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