summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-22 11:48:40 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-22 11:48:40 +0300
commit99caba74a9ba38f5f4d8ec5b90d9bc634b2f603c (patch)
tree02b0ce47312057f3b7b016ee2066cb72aaa134af /tests
parent33047a86bab3c15470829431015df1c8a59d98f6 (diff)
also add driver implicit wait for element search
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/selenium_test.py1
1 files changed, 1 insertions, 0 deletions
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()