Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 5899b67

Browse files
authored
deps(update): update webdriver-manager to ^12.0.1 (#4042)
Running `webdriver-manager update` will now by default grab the latest versions of all binaries (standalone, chromedriver, iedriver, gecko driver). You can continue to pin to a specific versions using the command line option. Example `webdriver-manager update --versions.chrome 2.20`. As of this release the latest versions are: - gecko v0.14.0 - selenium-standalone 3.0.1 is the latest jar file; however, we recommend 3.0.0-beta4. See note below on Firefox support. - chromedriver 2.27 - iedriver 3.0.0 A note on FireFox support: Selenium standalone 3.0.1 has a bug which prevents it from working with any version of FireFox. We have tested version 3.0.0-beta4 and know that it works with FireFox 51, and we expect that the 3.0.2 release will also work. closes #4033
1 parent c021595 commit 5899b67

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: lib/driverProviders/local.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {DriverProvider} from './driverProvider';
1818

1919
const SeleniumConfig = require('webdriver-manager/built/lib/config').Config;
2020
const SeleniumChrome = require('webdriver-manager/built/lib/binaries/chrome_driver').ChromeDriver;
21-
const SeleniumStandAlone = require('webdriver-manager/built/lib/binaries/stand_alone').StandAlone;
21+
const SeleniumStandAlone = require('webdriver-manager/built/lib/binaries/standalone').StandAlone;
2222
const remote = require('selenium-webdriver/remote');
2323

2424
let logger = new Logger('local');

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"saucelabs": "~1.3.0",
2626
"selenium-webdriver": "3.0.1",
2727
"source-map-support": "~0.4.0",
28-
"webdriver-manager": "^11.1.1",
28+
"webdriver-manager": "^12.0.1",
2929
"webdriver-js-extender": "^1.0.0"
3030
},
3131
"devDependencies": {

0 commit comments

Comments
 (0)