Skip to content

Commit

Permalink
test: higher timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt committed Jun 17, 2024
1 parent ce62d6b commit 074ee9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/sync/test_locators.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 074ee9b

Please sign in to comment.