From d67b698be2da583441eed0e20b8e7a99d415c2ec Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 17 Oct 2024 23:08:13 +0100 Subject: bitbake: toaster/tests/browser: Increase the default wait timeout Rather than hardcoded poll and sleep values, we want an overall long timeout and to drop all the other 'sleeping' code. To facilitate this, increase the overall timeout so we can then start to remove the other values. (Bitbake rev: 69a479383f9a8cae6600ce51b12b62be3a15ea38) Signed-off-by: Richard Purdie --- bitbake/lib/toaster/tests/browser/selenium_helpers_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib') diff --git a/bitbake/lib/toaster/tests/browser/selenium_helpers_base.py b/bitbake/lib/toaster/tests/browser/selenium_helpers_base.py index 2725f13382..b060133b1d 100644 --- a/bitbake/lib/toaster/tests/browser/selenium_helpers_base.py +++ b/bitbake/lib/toaster/tests/browser/selenium_helpers_base.py @@ -90,7 +90,7 @@ class Wait(WebDriverWait): Subclass of WebDriverWait with predetermined timeout and poll frequency. Also deals with a wider variety of exceptions. """ - _TIMEOUT = 10 + _TIMEOUT = 20 _POLL_FREQUENCY = 0.5 def __init__(self, driver, timeout=_TIMEOUT, poll=_POLL_FREQUENCY): -- cgit v1.2.3-54-g00ecf