瀏覽代碼

try to fix flaky tests by again increasing implicit wait

Rodja Trappe 2 年之前
父節點
當前提交
8ed3eb4215
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/conftest.py

+ 1 - 1
tests/conftest.py

@@ -30,7 +30,7 @@ def capabilities(capabilities: Dict) -> Dict:
 
 @pytest.fixture
 def selenium(selenium: webdriver.Chrome) -> webdriver.Chrome:
-    selenium.implicitly_wait(2)
+    selenium.implicitly_wait(4)
     selenium.set_page_load_timeout(2)
     return selenium