-
Notifications
You must be signed in to change notification settings - Fork 41
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
Chromedriver sucht nach version 91, was in Debian buster nicht verfügbar ist #86
Comments
should be |
You're absolutely right |
Tbh this WebDriverManager isn't a really good solution. It doesn't support ARM (e.g. for Raspberry Pi's) drivers or it's choosing the right version. :( |
is the docker image working for u guys? My docker is always complaining that it cant find the chromdriver |
With the following adjustments it works for me: |
Works for me, too. |
In der Docker Datei wird chromium=90.0.4430.212-1~deb10u1 installiert, was völlig richtig ist. Dabei handelt es um die letzte Version im repo.
Aber wenn Sie den Container ausführen, sucht der Treiber-Downloader nach dem Chrome 91 Treiber.
Ich habe es so repariert:
WebDriverManager.chromedriver().driverVersion("90.0.4430.212").setup();
The text was updated successfully, but these errors were encountered: