-
Notifications
You must be signed in to change notification settings - Fork 44
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
(Mac) Chromedriver not found; expected path 'C:/ChromeDriver/chromedriver.exe' #32
Comments
This would be somewhat addressed in PR 20 #20 - but would probably be better to look in the path first. |
Raised a PR with a more complete solution |
change the OS type to Darwin and pass the path where chromedriver is located. MacOS is darwin and not Linux. |
@nikhil-mongo the existing code doesn't handle Mac at all - it checks for Windows, then defaults to Linux. The PR linked above checks the PATH first, then adds support for Mac. |
if platform.system() == 'Linux': |
On a Mac, it's looking for windows path. Why not look in the path first?
The text was updated successfully, but these errors were encountered: