From afbb8c709d40e77b3f71c152d363c5ad95ceec2d Mon Sep 17 00:00:00 2001 From: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Date: Thu, 13 Mar 2025 12:03:56 +0100 Subject: [PATCH] Handled WebDriverException from Chrome driver version 113+. --- django/contrib/admin/tests.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/django/contrib/admin/tests.py b/django/contrib/admin/tests.py index 636a6ffdf2..f64a4c47f8 100644 --- a/django/contrib/admin/tests.py +++ b/django/contrib/admin/tests.py @@ -123,13 +123,21 @@ class AdminSeleniumTestCase(SeleniumTestCase, StaticLiveServerTestCase): """ Block until a new page has loaded and is ready. """ + from selenium.common.exceptions import WebDriverException from selenium.webdriver.common.by import By from selenium.webdriver.support import expected_conditions as ec old_page = self.selenium.find_element(By.TAG_NAME, "html") yield # Wait for the next page to be loaded - self.wait_until(ec.staleness_of(old_page), timeout=timeout) + try: + self.wait_until(ec.staleness_of(old_page), timeout=timeout) + except WebDriverException: + # Issue in version 113+ of Chrome driver where a WebDriverException + # error is raised rather than a StaleElementReferenceException, see: + # https://issues.chromium.org/issues/42323468 + pass + self.wait_page_ready(timeout=timeout) def admin_login(self, username, password, login_url="/admin/"):