From 074ee9ba23ef2bf6e58f8e0ef0fd1918f1af5e58 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 17 Jun 2024 15:55:25 +0200 Subject: [PATCH] test: higher timeout --- tests/sync/test_locators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sync/test_locators.py b/tests/sync/test_locators.py index 07509e10e..4ed1b578a 100644 --- a/tests/sync/test_locators.py +++ b/tests/sync/test_locators.py @@ -356,7 +356,7 @@ def test_locators_should_select_textarea( textarea = page.locator("textarea") textarea.evaluate("textarea => textarea.value = 'some value'") textarea.select_text() - textarea.select_text(timeout=1_000) + textarea.select_text(timeout=25_000) if browser_name == "firefox" or browser_name == "webkit": assert textarea.evaluate("el => el.selectionStart") == 0 assert textarea.evaluate("el => el.selectionEnd") == 10