webdriver-manager
Advanced tools
Changelog
12.1.8
Fixes for macOS ChromeDriver download. If you are using a macOS and are
running into a WebDriver.createSession
error, run
webdriver-manager clean
to remove the downloaded ChromeDriver
before running webdriver-manager update
.
Changelog
12.1.7
Updates to Chromedriver to the LATEST_RELEASE. This should work from here on in when Chrome is updated to a new version.
64795b7 chore(chrome) get latest chromedriver from LATEST_RELEASE (#418)
Changelog
12.1.4
Fixes issues introduced by 12.1.3 (--versions.chrome flag and status command did not work). Also prevents downloading version 75 using the config.json file.
(0a6ce24) fix(chromedriver): version fixes for update, status, and start (#380)
Changelog
12.1.3
Fixes download issues for chromedriver version 74+.
(476c117) fix(chromedriver): support downloads for chromedriver beyond 2.46 (#377)
Versions of Chromdriver were versioned as 2.xx. We previously used to tack on a '.0' at the end to make it a semver version. This is why it was not downloading 74.0.3729.6. We now have to change 74.0.3729.6 to be a semver. We will do this by grabbing 74.0.3729 with a regex.
This should work when downloading the latest chromedriver version since
2.46.0 < 74.0.3729. If Chromedriver releases 75 but we are still on
Chrome 74, this will still break in this version of webdriver-manager.
This does not prevent latest Chromedriver and latest Chrome mismatches.
If you run into an issue where Chromedriver is mismatched with Chrome,
use the --versions.chrome
flag to pass in the version to download.
Changelog
12.1.2
Fixes download issues for the selenium jar file.
(7dc17ef) fix(selenium): download jar files and not zip files (#371)
This fix is here because selenium now has .zip files in the .xml. This worked previously since there were no .zip files and it would find a version that matched the latest jar file.
Also do not download alpha versions since we are also not downloading beta versions of the jar file.
closes #370