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,6 +4680,7 @@ 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'))
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,
@ -4687,6 +4688,7 @@ class SeleniumTests(AdminSeleniumTestCase):
)
# First form field has a MultiWidget
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,