chromedriver
Advanced tools
Comparing version 2.29.2 to 2.30.0
var path = require('path'); | ||
process.env.PATH += path.delimiter + path.join(__dirname, 'chromedriver'); | ||
exports.path = process.platform === 'win32' ? path.join(__dirname, 'chromedriver', 'chromedriver.exe') : path.join(__dirname, 'chromedriver', 'chromedriver'); | ||
exports.version = '2.29'; | ||
exports.version = '2.30'; | ||
exports.start = function(args) { | ||
@@ -6,0 +6,0 @@ exports.defaultInstance = require('child_process').execFile(exports.path, args); |
{ | ||
"name": "chromedriver", | ||
"version": "2.29.2", | ||
"version": "2.30.0", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "chromedriver", |
@@ -140,6 +140,12 @@ ChromeDriver | ||
with an additional build number that is used for revisions to the installer. | ||
For Latest version of Chromedriver: | ||
You can use the package version number to install a specific version, or use the | ||
setting to a specific version. To always install the latest version of Chromedriver, | ||
use `LATEST` as the version number: | ||
Either add property into your [`.npmrc`](https://docs.npmjs.com/files/npmrc) file. | ||
```shell | ||
npm install chromedriver --chromedriver_version=LATEST | ||
``` | ||
Or add property into your [`.npmrc`](https://docs.npmjs.com/files/npmrc) file. | ||
``` | ||
@@ -146,0 +152,0 @@ chromedriver_version=LATEST |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
49565
188