Fixed #29892 -- Added .wait_page_loaded() in SeleniumTests.test_first_field_focus().

This commit is contained in:
Jon Dufresne 2019-11-26 04:58:12 -08:00 committed by Carlton Gibson
parent f0ed38edf3
commit 875e3ff4fd
1 changed files with 4 additions and 2 deletions

View File

@ -4680,14 +4680,16 @@ class SeleniumTests(AdminSeleniumTestCase):
"""JavaScript-assisted auto-focus on first usable form field."""
# First form field has a single widget
self.admin_login(username='super', password='secret', login_url=reverse('admin:index'))
self.selenium.get(self.live_server_url + reverse('admin:admin_views_picture_add'))
with self.wait_page_loaded():
self.selenium.get(self.live_server_url + reverse('admin:admin_views_picture_add'))
self.assertEqual(
self.selenium.switch_to.active_element,
self.selenium.find_element_by_id('id_name')
)
# First form field has a MultiWidget
self.selenium.get(self.live_server_url + reverse('admin:admin_views_reservation_add'))
with self.wait_page_loaded():
self.selenium.get(self.live_server_url + reverse('admin:admin_views_reservation_add'))
self.assertEqual(
self.selenium.switch_to.active_element,
self.selenium.find_element_by_id('id_start_date_0')