-
Notifications
You must be signed in to change notification settings - Fork 430
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
Support renamed Chrome.app on macOS #92
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I got an error when launching helium via
driver = start_chrome()
:After some trial and error I noticed Chrome gets installed into
/Applications/Google Chrome.app
by default, however I had renamed it to justChrome.app
, presumably breaking the binary lookup functionality of helium.It was easily fixed by linking Chrome to the expexted path via
ln -s /Applications/Chrome.app /Applications/Google\ Chrome.app
-however an API access à ladriver = start_chrome(binary_path="/Applications/Chome.app")
would be preferable.The text was updated successfully, but these errors were encountered: