From 36c0e7687416a8aa837848bcf22ceef717ecc04c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=BDeljko=20Filipin?= Date: Fri, 6 Apr 2018 13:08:06 +0200 Subject: [PATCH] Selenium: use default value for waitforTimeout The default is 10000 (10 seconds). It was increased by mistake. 20000 is the value needed for mochaOpts timeout. There is no reason to have the double value for waitforTimeout. Bug: T179190 Change-Id: I14f72367a36815d155cedc57757481f6294fdc51 --- tests/selenium/wdio.conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/selenium/wdio.conf.js b/tests/selenium/wdio.conf.js index 73e6bb9f0c..5565bc3e4a 100644 --- a/tests/selenium/wdio.conf.js +++ b/tests/selenium/wdio.conf.js @@ -127,7 +127,7 @@ exports.config = { ), // // Default timeout for all waitFor* commands. - waitforTimeout: 20000, + waitforTimeout: 10000, // // Default timeout in milliseconds for request // if Selenium Grid doesn't send response -- 2.20.1