diff options
Diffstat (limited to 'tests/admin_widgets')
| -rw-r--r-- | tests/admin_widgets/tests.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py index 3ab7938ece..c42553a339 100644 --- a/tests/admin_widgets/tests.py +++ b/tests/admin_widgets/tests.py @@ -645,6 +645,13 @@ class DateTimePickerSeleniumFirefoxTests(SeleniumDataMixin, AdminSeleniumWebDriv # Check that the time picker is visible self.assertEqual( self.get_css_value('#clockbox0', 'display'), 'block') + self.assertEqual( + [ + x.text for x in + self.selenium.find_elements_by_xpath("//ul[@class='timelist']/li/a") + ], + ['Now', 'Midnight', '6 a.m.', 'Noon', '6 p.m.'] + ) # Press the ESC key self.selenium.find_element_by_tag_name('body').send_keys([Keys.ESCAPE]) # Check that the time picker is hidden again |
