2026-01-01 15:50:40 -05:00
|
|
|
from django.test import LiveServerTestCase
|
2025-12-29 21:52:45 -05:00
|
|
|
from selenium import webdriver
|
2025-12-30 17:44:48 -05:00
|
|
|
from selenium.webdriver.common.by import By
|
|
|
|
|
from selenium.webdriver.common.keys import Keys
|
|
|
|
|
import time
|
|
|
|
|
import unittest
|
2025-12-29 21:52:45 -05:00
|
|
|
|
2026-01-01 15:50:40 -05:00
|
|
|
class NewVisitorTest(LiveServerTestCase):
|
2025-12-30 23:54:44 -05:00
|
|
|
# Helper methods
|
2025-12-29 22:23:00 -05:00
|
|
|
def setUp(self):
|
|
|
|
|
self.browser = webdriver.Firefox()
|
|
|
|
|
|
|
|
|
|
def tearDown(self):
|
|
|
|
|
self.browser.quit()
|
2025-12-29 21:52:45 -05:00
|
|
|
|
2025-12-30 23:54:44 -05:00
|
|
|
def check_for_row_in_list_table(self, row_text):
|
|
|
|
|
table = self.browser.find_element(By.ID, 'id-list-table')
|
|
|
|
|
rows = table.find_elements(By.TAG_NAME, 'tr')
|
|
|
|
|
self.assertIn(row_text, [row.text for row in rows])
|
|
|
|
|
|
|
|
|
|
# Test methods
|
2025-12-29 22:23:00 -05:00
|
|
|
def test_can_start_a_todo_list(self):
|
2026-01-01 15:50:40 -05:00
|
|
|
self.browser.get(self.live_server_url)
|
2025-12-30 23:47:25 -05:00
|
|
|
|
2025-12-29 22:23:00 -05:00
|
|
|
self.assertIn("To-Do", self.browser.title)
|
2025-12-30 17:44:48 -05:00
|
|
|
header_text = self.browser.find_element(By.TAG_NAME, 'h1').text
|
|
|
|
|
self.assertIn('To-Do', header_text)
|
|
|
|
|
|
2025-12-30 22:19:42 -05:00
|
|
|
inputbox = self.browser.find_element(By.ID, 'id-new-item')
|
2025-12-30 17:44:48 -05:00
|
|
|
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a to-do item')
|
|
|
|
|
|
|
|
|
|
inputbox.send_keys('Buy peacock feathers')
|
|
|
|
|
|
|
|
|
|
inputbox.send_keys(Keys.ENTER)
|
|
|
|
|
time.sleep(1)
|
2025-12-30 23:54:44 -05:00
|
|
|
self.check_for_row_in_list_table('1: Buy peacock feathers')
|
2025-12-30 17:44:48 -05:00
|
|
|
|
2025-12-30 23:47:25 -05:00
|
|
|
inputbox = self.browser.find_element(By.ID, 'id-new-item')
|
|
|
|
|
inputbox.send_keys('Use peacock feathers to make a fly')
|
|
|
|
|
inputbox.send_keys(Keys.ENTER)
|
|
|
|
|
time.sleep(1)
|
2025-12-30 23:54:44 -05:00
|
|
|
self.check_for_row_in_list_table('2: Use peacock feathers to make a fly')
|
|
|
|
|
self.check_for_row_in_list_table('1: Buy peacock feathers')
|