summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-22 12:45:35 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-22 12:45:35 +0300
commitf91c19b0402944de142289f3c479bff13b9efac9 (patch)
tree0d2b7f50bd613de29a06b2eb0ebc4471c615925e
parentf21c0aa8f6e606d6f5f147444148fdfcb5c1c187 (diff)
parent9c66b9b326002f2ae5b334af08de44c00354818f (diff)
Merge branch 'protected/selenium-standalone'
-rw-r--r--tests/integration/selenium_test.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/selenium_test.py b/tests/integration/selenium_test.py
index 11aa96fc0..de25afad5 100644
--- a/tests/integration/selenium_test.py
+++ b/tests/integration/selenium_test.py
@@ -18,6 +18,8 @@ class SeleniumTest(unittest.TestCase):
self.driver = webdriver.Remote(command_executor=SELENIUM_GRID_ENDPOINT, options=webdriver.ChromeOptions())
self.base_url = f"http://tt-rss-{CI_COMMIT_SHORT_SHA}-app.{K8S_NAMESPACE}.svc.cluster.local/tt-rss"
+ self.driver.implicitly_wait(5)
+
def tearDown(self):
self.driver.quit()