Skip to content

Commit

Permalink
Remove reuse_service paramter from webdriver
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking13 committed Dec 9, 2023
1 parent 045c569 commit df62d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytest_pyodide/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ def get_driver(self, jspi=False):
options = Options()
if GLOBAL_SAFARI_WEBDRIVER is not None:
instance = Safari(
options=options, service=GLOBAL_SAFARI_WEBDRIVER, reuse_service=True
options=options, service=GLOBAL_SAFARI_WEBDRIVER,
)
else:
instance = Safari(options=options)
Expand Down

0 comments on commit df62d89

Please sign in to comment.