We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26d5005 commit 79a0939Copy full SHA for 79a0939
py/test/selenium/webdriver/common/devtools_tests.py
@@ -32,7 +32,7 @@ def test_check_console_messages(driver, pages, recwarn):
32
connection.on(devtools.runtime.ConsoleAPICalled, console_api_calls.append)
33
driver.execute_script("console.log('I love cheese')")
34
driver.execute_script("console.error('I love bread')")
35
- WebDriverWait(driver, 5).until(lambda _: len(console_api_calls) == 2)
+ WebDriverWait(driver, 10).until(lambda _: len(console_api_calls) == 2)
36
37
assert console_api_calls[0].type_ == "log"
38
assert console_api_calls[0].args[0].value == "I love cheese"
0 commit comments