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 cfc1030 commit 50892f6Copy full SHA for 50892f6
tests/sync/test_browsertype_connect.py
@@ -26,10 +26,10 @@ def test_browser_type_connect_slow_mo(
26
remote_server = launch_server()
27
browser = browser_type.connect(remote_server.ws_endpoint, slow_mo=100)
28
browser_context = browser.new_context()
29
- page = browser_context.new_page()
30
t1 = time.monotonic()
+ page = browser_context.new_page()
31
assert page.evaluate("11 * 11") == 121
32
- assert (time.monotonic() - t1) >= 0.100
+ assert (time.monotonic() - t1) >= 0.2
33
page.goto(server.EMPTY_PAGE)
34
browser.close()
35
0 commit comments