We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current version of chromedriver (as retrieved from https://chromedriver.storage.googleapis.com/LATEST_RELEASE) is 91.0.4472.101.
https://chromedriver.storage.googleapis.com/LATEST_RELEASE
91.0.4472.101
Unfortunately, because this is 10 total digits, this causes the AutoUpgradeDrivers task to fail with
ERROR tasks.AutoUpgradeDrivers - java.lang.NumberFormatException: For input string: "9104472101"
because the version, with dots removed, is greater than Java's Integer.MAX_VALUE.
Integer.MAX_VALUE
The text was updated successfully, but these errors were encountered:
Hi Jonathan,
I ran into the same problem and also wanted support for Edge Chromium. Fixed both problems, see #445.
Sorry, something went wrong.
No branches or pull requests
The current version of chromedriver (as retrieved from
https://chromedriver.storage.googleapis.com/LATEST_RELEASE
) is91.0.4472.101
.Unfortunately, because this is 10 total digits, this causes the AutoUpgradeDrivers task to fail with
because the version, with dots removed, is greater than Java's
Integer.MAX_VALUE
.The text was updated successfully, but these errors were encountered: