Selaa lähdekoodia

1st steps fo FT for layout & styling

david 5 vuotta sitten
vanhempi
commit
8882b97754
2 muutettua tiedostoa jossa 22 lisäystä ja 1 poistoa
  1. 19 0
      functional_tests/tests.py
  2. 3 1
      lists/templates/home.html

+ 19 - 0
functional_tests/tests.py

@@ -76,3 +76,22 @@ class NewVisitorTest(LiveServerTestCase):
         page_text = self.browser.find_element_by_tag_name('body').text
         self.assertNotIn('Buy peacock feathers', page_text)
         self.assertIn('Buy milk', page_text)
+
+    def test_layout_and_styling(self):
+        self.browser.get(self.live_server_url)
+        self.browser.set_window_size(1024, 768)
+        inputbox = self.browser.find_element_by_id('id_new_item')
+        self.assertAlmostEqual(
+            inputbox.location['x'] + inputbox.size['width'] / 2,
+            512,
+            delta=10
+        )
+        inputbox.send_keys('testing')
+        inputbox.send_keys(Keys.ENTER)
+        self.wait_for_row_in_list_table('1: testing')
+        inputbox = self.browser.find_element_by_id('id_new_item')
+        self.assertAlmostEqual(
+            inputbox.location['x'] + inputbox.size['width'] / 2,
+            512,
+            delta=10
+        )

+ 3 - 1
lists/templates/home.html

@@ -5,7 +5,9 @@
     <body>
         <h1>Start a new To-Do list</h1>
         <form method="POST" action="/lists/new">
-            <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
+            <p style="text-align: center;">
+                <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
+            </p>
             {% csrf_token %}
         </form>
     </body>