From 1786843d9d7cdb4f2b54c7ebd4c7470c90f57d31 Mon Sep 17 00:00:00 2001 From: philippe Date: Wed, 8 Feb 2023 13:50:24 -0500 Subject: [PATCH] Remove implicitly_wait --- dash/testing/browser.py | 1 - 1 file changed, 1 deletion(-) diff --git a/dash/testing/browser.py b/dash/testing/browser.py index 1ce5eea68c..3ae8c78308 100644 --- a/dash/testing/browser.py +++ b/dash/testing/browser.py @@ -66,7 +66,6 @@ def __init__( self._pause = pause self._driver = until(self.get_webdriver, timeout=1) - self._driver.implicitly_wait(2) self._wd_wait = WebDriverWait(self.driver, wait_timeout) self._last_ts = 0