From 3b4091efd01e805a1fa2f2dce784c78fd1451cd2 Mon Sep 17 00:00:00 2001 From: Clark McAdoo Date: Fri, 24 May 2024 11:19:59 -0500 Subject: [PATCH] fix: bump that sleep --- scripts/actions/webdriver-mobile.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/actions/webdriver-mobile.mjs b/scripts/actions/webdriver-mobile.mjs index 77c7b8bfbc7..2bcc5c2c837 100644 --- a/scripts/actions/webdriver-mobile.mjs +++ b/scripts/actions/webdriver-mobile.mjs @@ -19,7 +19,7 @@ options.addArguments('no-sandbox'); options.addArguments('disable-dev-shm-usage'); options.addArguments('headless'); -const TIMEOUT = 10000; +const TIMEOUT = 30000; const SLEEP_TIME = 5000; const waitForXPath = (xpath, timeout = TIMEOUT) =>