-
Notifications
You must be signed in to change notification settings - Fork 22
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
chore: Upgrade Selenium to 4.11.0 #1656
Conversation
Was it intended that this is a 9.0.x release? I had to downgrade Vaadin from 24.1.5 to 24.1.4 again because the new selenium broke all our tests. Example stack trace:
|
For anybody running into the same problem: After adding a ChromeDriverService service = new ChromeDriverService.Builder()
.usingDriverExecutable(new File("/usr/bin/chromedriver"))
.build();
// ChromeOptions options; as before
return new ChromeDriver(service, options); |
Unfortunately it is not really an option to stay on an old Selenium version as it will stop working with new Chrome versions, sooner or later. The issue you mention sounds a bit like SeleniumHQ/selenium#12483 |
Yeah I came across this issue as well and digged into their docs to find how I can remove the Selenium Manager.. our environment is offline, therefore I have to manually add the driver and can't rely on an service to download it at runtime. |
No description provided.