Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix looking for incorrect binary for edgedriver on Linux #392

Merged
merged 1 commit into from Jun 24, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion webdriver_manager/core/driver_cache.py
Expand Up @@ -111,7 +111,7 @@ def find_driver(self, driver):
"msedgedriver" if driver_name == "edgedriver" else driver_name
)
driver_binary_name = (
f"{driver_binary_name}.exe" if "win" in os_type else driver_name
f"{driver_binary_name}.exe" if "win" in os_type else driver_binary_name
)
binary_path = os.path.join(path, driver_binary_name)
if not os.path.exists(binary_path):
Expand Down