-
Notifications
You must be signed in to change notification settings - Fork 116
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
Wrong ChromeDriver v75 patch version #401
Comments
@cnishina after trying to force the latest version to be download:
The I found that the reason is that even forcing the version, it's still pointing to the previous one (75.0.3770.8). So it seems that webdriver-manager is picking the first v75 version it finds in |
Though the chrome-response.xml file has both 75.0.3770.8 & 75.0.3770.90, webdriver-manager downloads 75.0.3770.8 instead of 75.0.3770.90 |
If this is happening in webdriver-manager 12, I do not plan to fix this (legacy branch). We are comparing the first 3 sets of digits for semver and the rest was being dropped off. I hope to fix this to the master branch which will eventually be released. |
@cnishina will this be a new major release of |
I would make sure that you are using the latest webdriver-manager 12.1.6. This should download version 76 of ChromeDriver. I would check the node_modules/webdriver-manager/package.json file to see what version you have installed. @denver-HJS |
@cnishina upgrading to [email protected] did solve my issue. Thank you very much! |
@denver-HJS No problem. Leaving this open because @carlos-gva issue should be looked at. Marking this as a bug. |
@cnishina I also noticed that when the chromedriver v75.0.3770.140 was released, webdriver-manager started to pull it correctly, I should have updated this issue with that info... |
This is still not a sustainable way of doing things. Creating #410 to try to address this. Having new PRs and releases is not the right way to do this. |
This is quite strange but it seems that webdriver-manager is not downloading the latest version of ChromeDriver, but on the logs, the url is correct:
Log example
I/downloader - curl -o/Users/carlos.gouveia/node_modules/webdriver-manager/selenium/chromedriver_75.0.3770.8.zip https://chromedriver.storage.googleapis.com/75.0.3770.90/chromedriver_mac64.zip
As you can see, two different versions on the same log line.
Is this just a naming issue? Or is it downloading the x.x.x.8 instead of the x.x.x.90 ?
The text was updated successfully, but these errors were encountered: