Chap2.2 The Python Standard Library's unittest Module

chap2
Jason Zhu 2020-10-15 17:34:44 +11:00
parent e48aa8a282
commit 76a8bf8aed
1 changed files with 31 additions and 20 deletions

View File

@ -1,33 +1,44 @@
from selenium import webdriver from selenium import webdriver
import unittest
browser = webdriver.Firefox() class NewVisitorTest(unittest.TestCase):
# Edith has heard about a cool new online to-do app. She goes def setUp(self):
# to check out its homepage self.browser = webdriver.Firefox()
browser.get('http://localhost:8000')
# She notices the page title and header mention to-do lists def tearDown(self):
assert 'To-Do' in browser.title self.browser.quit()
# She is invited to enter a to-do item straight away def test_can_start_a_list_and_retrieve_it_later(self):
# Edith has heard about a cool new online to-do app. She goes
# to check out its homepage
self.browser.get('http://localhost:8000')
# She types "Buy peacock feathers" into a text box (Edith's hobby # She notices the page title and header mention to-do lists
# is tying fly-fishing lures) self.assertIn('To-Do', self.browser.title)
self.fail('Finish the test!')
# When she hits enter, the page updates, and now the page lists # She is invited to enter a to-do item straight away
# "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 # She types "Buy peacock feathers" into a text box (Edith's hobby
# enters "Use peacock feathers to make a fly" (Edith is very methodical) # is tying fly-fishing lures)
# The page updates again, and now shows both items on her list # When she hits enter, the page updates, and now the page lists
# "1: Buy peacock feathers" as an item in a to-do list
# Edith wonders whether the site will remember her list. Then she sees # There is still a text box inviting her to add another item. She
# that the site has generated a unique URL for her -- there is some # enters "Use peacock feathers to make a fly" (Edith is very methodical)
# explanatory text to that effect.
# She visits that URL - her to-do list is still there. # The page updates again, and now shows both items on her list
# Satisfied, she goes back to sleep # Edith wonders whether the site will remember her list. Then she sees
# that the site has generated a unique URL for her -- 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
if __name__ == '__main__':
unittest.main(warnings='ignore')
browser.quit()