Skip to content

Commit

Permalink
deps(update): update webdriver-manager to ^12.0.1 (#4042)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
cnishina committed Jan 31, 2017
1 parent c021595 commit 5899b67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/driverProviders/local.ts
Expand Up @@ -18,7 +18,7 @@ import {DriverProvider} from './driverProvider';

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

let logger = new Logger('local');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -25,7 +25,7 @@
"saucelabs": "~1.3.0",
"selenium-webdriver": "3.0.1",
"source-map-support": "~0.4.0",
"webdriver-manager": "^11.1.1",
"webdriver-manager": "^12.0.1",
"webdriver-js-extender": "^1.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit 5899b67

Please sign in to comment.