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