Skip to content

Commit

Permalink
Fix selenium can't find FireFox driver (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanking13 authored Aug 9, 2023
1 parent 8743ec5 commit 57dafeb
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 @@ -427,7 +427,7 @@ def get_driver(self):
for flag in FIREFOX_FLAGS:
options.add_argument(flag)

return Firefox(service=Service("geckodriver"), options=options)
return Firefox(service=Service(), options=options)


class SeleniumChromeRunner(_SeleniumBaseRunner):
Expand Down

0 comments on commit 57dafeb

Please sign in to comment.