Skip to content
This repository was archived by the owner on Jun 29, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion edgedriver_autoinstaller/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_edge_version():
return # Edge for linux still doesn't exists
elif platform == 'mac':
# TODO: FIX THIS
process = subprocess.Popen(['/Applications/Google edge.app/Contents/MacOS/Google edge', '--version'], stdout=subprocess.PIPE)
process = subprocess.Popen(['/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft edge', '--version'], stdout=subprocess.PIPE)
version = process.communicate()[0].decode('UTF-8').replace('Google edge', '').strip()
elif platform == 'win':
process = subprocess.Popen(
Expand Down