Skip to content

Instantly share code, notes, and snippets.

@xiantail
Created December 30, 2015 06:21
Show Gist options
  • Save xiantail/00aa3f8e27d1c514b3b5 to your computer and use it in GitHub Desktop.
Save xiantail/00aa3f8e27d1c514b3b5 to your computer and use it in GitHub Desktop.
TDD with Python / Chapter 2
from selenium import webdriver
browser = webdriver.Firefox()
# Edith has heard about a cool new onlie to-do app. She goes
# to check out its homepage
browser.get('localhost:8000')
# She notices the page title and header mention to-do lists
assert "To-Do" in browser.title
# She is invited to enter a to-do item straight away
# She types "Buy peacock feathers" into a text box (Edith's hobby
# is tying fly-fishing lures)
# When she hits enter, the page updates, and now the page lists
# "1: Buy peacock feathers" as an item in a to-do list
# There is still a text box inviting her to add another item. She
# enters "Use peacock feathers to make a fly" (Edith is very methodical)
# The page updates again, and now shows both items on her list
# Edith wonders whether the site will remember her list. Then she sees
# that the site has generated a unique URL for -- there is some
# explanatory text to that effect.
# She visits that URL - her to-do list is still there
# Satisfied, she goes back to sleep
browser.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment