-
Notifications
You must be signed in to change notification settings - Fork 0
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
Webdriver can't be downloaded for new chrome ver. 115 and higher. #14
Comments
Thank you @dbelykh for reporting that. I will be taking a look at this issue. As a temporarily hot fix (before the fix in the library), instead of DriverSetup.ConfigureChrome()
.WithVersion("114.0.5735.90")
.SetUp(); |
@YevgeniyShunevych Thank you very much for the advise!) <versions>
<version browser="{actual browser version}" driver="{actual driver version}" timestamp="{some recent time, eg. 2023-07-19 13:10:21Z}" />
<version browser="latest" driver="{actual driver version}"" timestamp="{some recent time, eg. 2023-07-19 14:10:21Z}"/>
</versions> Not sure if the last row is required. But maybe it will work even after minor browser update. |
I have just released Atata.WebDriverSetup v2.7.0 with added support of Chrome v115+ via Chrome for Testing API endpoints. Please update the version and check it out. |
Thank you for the prompt response. I have updated to 2.7.0. But nothing is changed. Same exception. And folder bin/drivers/chrome is empty. |
Strange. I updated on couple of projects and it was OK. May it be because you modified |
Yes, I have removed this drivers folder firstly. |
Great. Thanks again for raising this issue. |
The following exception is raised when launching tests:
"OneTimeSetUp: System.Net.Http.HttpRequestException : Response status code does not indicate success: 404 (Not Found)."
The AutoSetUpDriverToUse() is called on the OneTimeSetUp step.
The most possible reason is that starting from version 115 Google changed the URLs for webdriver downloading:
https://chromedriver.chromium.org/downloads
https://googlechromelabs.github.io/chrome-for-testing/
But Atata.WebDriverSetup tries to get appropriate driver version using old url: https://chromedriver.storage.googleapis.com
The text was updated successfully, but these errors were encountered: