From 99caba74a9ba38f5f4d8ec5b90d9bc634b2f603c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 22 May 2025 11:48:40 +0300 Subject: [PATCH] also add driver implicit wait for element search --- tests/integration/selenium_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py index 49fb885b9..ef4929105 100644 --- a/tests/integration/selenium_test.py +++ b/tests/integration/selenium_test.py @@ -19,6 +19,7 @@ class SeleniumTest(unittest.TestCase): self.base_url = f"http://tt-rss-{CI_COMMIT_SHORT_SHA}-app.{K8S_NAMESPACE}.svc.cluster.local/tt-rss" self.driver.set_page_load_timeout(10) + self.driver.driver.implicitly_wait(10) def tearDown(self): self.driver.quit()