-
-
Notifications
You must be signed in to change notification settings - Fork 460
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
Error in webdriver.util get_browser_version_from_os for 32 bit applications #315
Comments
hmm. not only that. the entirely of this method seems completely broken:
the broken code seems to be somewhere here:
|
@vong0 thank you for report! Please attach code and stacktrace to reproduce that. |
The code to reproduce, run on any windows machine with google chrome installed:
Error Log:
Note that when running manually on my machine one of these individual commands work:
I think the issues lies at:
|
Ok I did some more investigation. This only seems to apply for google chrome and on windows (edge + firefox work fine). I'm using the latest release 3.5.3 but I also noticed this issue on the latest main. |
thanks. i think that fixed it. |
the latest version of the webdriver manager has a bug where these is no space between program files and (x86).
this results in errors since: 'C:\Program Files(x86)' does not exist.
to fix this, all "$env:PROGRAMFILES(x86)" should be replaced with "$env:PROGRAMFILES (x86)"
The text was updated successfully, but these errors were encountered: