2026-01-13 20:58:05 -05:00
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
|
from selenium.webdriver.common.keys import Keys
|
|
|
|
|
|
2026-01-14 13:23:31 -05:00
|
|
|
from .base import FunctionalTest
|
2026-01-13 20:58:05 -05:00
|
|
|
|
2026-01-14 13:23:31 -05:00
|
|
|
MAX_WAIT = 5
|
2026-01-13 20:58:05 -05:00
|
|
|
|
2026-01-14 13:23:31 -05:00
|
|
|
class NewVisitorTest(FunctionalTest):
|
2026-01-13 20:58:05 -05:00
|
|
|
# Test methods
|
|
|
|
|
def test_can_start_a_todo_list(self):
|
|
|
|
|
self.browser.get(self.live_server_url)
|
|
|
|
|
|
2026-01-19 18:48:21 -05:00
|
|
|
self.assertIn('Dashboard', self.browser.title)
|
2026-01-13 20:58:05 -05:00
|
|
|
header_text = self.browser.find_element(By.TAG_NAME, 'h1').text
|
2026-01-19 18:48:21 -05:00
|
|
|
self.assertIn('Dashboard', header_text)
|
2026-01-13 20:58:05 -05:00
|
|
|
|
2026-01-20 15:14:05 -05:00
|
|
|
inputbox = self.get_item_input_box()
|
2026-01-13 20:58:05 -05:00
|
|
|
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a to-do item')
|
|
|
|
|
|
|
|
|
|
inputbox.send_keys('Buy peacock feathers')
|
|
|
|
|
|
|
|
|
|
inputbox.send_keys(Keys.ENTER)
|
|
|
|
|
self.wait_for_row_in_list_table('1. Buy peacock feathers')
|
|
|
|
|
|
2026-01-20 15:14:05 -05:00
|
|
|
inputbox = self.get_item_input_box()
|
2026-01-13 20:58:05 -05:00
|
|
|
inputbox.send_keys('Use peacock feathers to make a fly')
|
|
|
|
|
inputbox.send_keys(Keys.ENTER)
|
|
|
|
|
|
|
|
|
|
self.wait_for_row_in_list_table('2. Use peacock feathers to make a fly')
|
|
|
|
|
self.wait_for_row_in_list_table('1. Buy peacock feathers')
|
|
|
|
|
|
|
|
|
|
def test_multiple_users_can_start_lists_at_different_urls(self):
|
|
|
|
|
self.browser.get(self.live_server_url)
|
2026-01-20 15:14:05 -05:00
|
|
|
inputbox = self.get_item_input_box()
|
2026-01-13 20:58:05 -05:00
|
|
|
inputbox.send_keys('Buy peacock feathers')
|
|
|
|
|
inputbox.send_keys(Keys.ENTER)
|
|
|
|
|
self.wait_for_row_in_list_table('1. Buy peacock feathers')
|
|
|
|
|
|
|
|
|
|
edith_dash_url = self.browser.current_url
|
|
|
|
|
self.assertRegex(edith_dash_url, '/apps/dashboard/.+')
|
|
|
|
|
|
|
|
|
|
self.browser.delete_all_cookies()
|
|
|
|
|
|
|
|
|
|
self.browser.get(self.live_server_url)
|
|
|
|
|
page_text = self.browser.find_element(By.TAG_NAME, 'body').text
|
|
|
|
|
self.assertNotIn('Buy peacock feathers', page_text)
|
|
|
|
|
|
2026-01-20 15:14:05 -05:00
|
|
|
inputbox = self.get_item_input_box()
|
2026-01-13 20:58:05 -05:00
|
|
|
inputbox.send_keys('Buy milk')
|
|
|
|
|
inputbox.send_keys(Keys.ENTER)
|
|
|
|
|
self.wait_for_row_in_list_table('1. Buy milk')
|
|
|
|
|
|
|
|
|
|
francis_dash_url = self.browser.current_url
|
|
|
|
|
self.assertRegex(francis_dash_url, '/apps/dashboard/.+')
|
|
|
|
|
self.assertNotEqual(francis_dash_url, edith_dash_url)
|
|
|
|
|
|
|
|
|
|
page_text = self.browser.find_element(By.TAG_NAME, 'body').text
|
|
|
|
|
self.assertNotIn('Buy peacock feathers', page_text)
|
|
|
|
|
self.assertIn('Buy milk', page_text)
|