-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctional_tests.py
More file actions
74 lines (48 loc) · 2.36 KB
/
functional_tests.py
File metadata and controls
74 lines (48 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# -*- coding: utf-8 -*-
"""
Created on Tue Aug 25 16:15:54 2015
@author: RMB
"""
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import unittest
class NewVisitorTest(unittest.TestCase):
def setUp(self): #
self.browser = webdriver.Firefox()
self.browser.implicitly_wait(3)
def tearDown(self): #
self.browser.quit()
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
# to check out its homepage
self.browser.get('http://localhost:8000')
#self.browser.implicitly_wait(3)
#She notices the page title and header mention to-do lists
self.assertIn('To-Do',self.browser.title)
header_text = self.browser.find_element_by_tag_name('h1').text
self.assertIn('To-Do',header_text)
# She is invited to enter a to-do item straigtht away
inputbox = self.browser.find_element_by_id('id_new_item')
self.assertEqual(inputbox.get_attribute('placeholder'),
'Enter a to-do item'
)
#She types "Buy peacock feathers" into a text box (Edith's hobby is
#tying fly-fishing lures)
inputbox.send_keys('Buy peacock feathers')
#When she hits enter, the page updates, and now the page lists
#"1: Buy peacock featuers" as an item.
inputbox.send_keys(Keys.ENTER)
table = self.browser.find_element_by_id('id_list_table')
rows = table.find_elements_by_tag_name('tr')
self.assertTrue(any(row.text == '1: Buy peacock feathers' for row in rows)
)
# 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)
self.fail('Finish the test!')
#The page updates again.
#Edith wonders whether the site will remember her list. Then she sees that the site
#has generated a unique URL fo her - - there is some text to that effect.
#She visits the URL, her to-do list is still there.
#Satisfied, she returns to her homeworld.
if __name__ == '__main__': #
unittest.main(warnings='ignore') #