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 cbbae89 commit fac9dfbCopy full SHA for fac9dfb
py/conftest.py
@@ -342,16 +342,6 @@ def driver(request):
342
if request.node.get_closest_marker("no_driver_after_test"):
343
driver_instance = None
344
345
- # Close the browser after BiDi tests. Those make event subscriptions
346
- # and doesn't seems to be stable enough, causing the flakiness of the
347
- # subsequent tests.
348
- # Remove this when BiDi implementation and API is stable.
349
- if selenium_driver.bidi:
350
- request.addfinalizer(selenium_driver.stop_driver)
351
-
352
- if request.node.get_closest_marker("no_driver_after_test"):
353
- driver_instance = None
354
355
356
@pytest.fixture(scope="session", autouse=True)
357
def stop_driver(request):
0 commit comments