chromedriver
Advanced tools
Comparing version 2.10.0 to 2.11.0
@@ -17,3 +17,3 @@ 'use strict' | ||
var libPath = path.join(__dirname, 'lib', 'chromedriver') | ||
var downloadUrl = 'http://chromedriver.storage.googleapis.com/%s/chromedriver_%s.zip' | ||
var downloadUrl = (process.env.CHROMEDRIVER_CDNURL || 'http://chromedriver.storage.googleapis.com') + '/%s/chromedriver_%s.zip' | ||
var platform = process.platform | ||
@@ -79,4 +79,4 @@ | ||
var candidateTmpDirs = [ | ||
process.env.TMPDIR || '/tmp', | ||
npmConf.get('tmp'), | ||
process.env.TMPDIR || npmConf.get('tmp'), | ||
'/tmp', | ||
path.join(process.cwd(), 'tmp') | ||
@@ -83,0 +83,0 @@ ] |
var path = require('path'); | ||
exports.path = process.platform === 'win32' ? path.join(__dirname, 'chromedriver', 'chromedriver.exe') : path.join(__dirname, 'chromedriver', 'chromedriver'); | ||
exports.version = '2.10'; | ||
exports.version = '2.11'; | ||
exports.start = function() { | ||
@@ -5,0 +5,0 @@ exports.defaultInstance = require('child_process').execFile(exports.path); |
{ | ||
"name": "chromedriver", | ||
"version": "2.10.0", | ||
"version": "2.11.0", | ||
"keywords": ["chromedriver", "selenium"], | ||
@@ -5,0 +5,0 @@ "description": "ChromeDriver for Selenium", |
ChromeDriver | ||
======= | ||
An NPM wrapper for Selenium [ChromeDriver](https://code.google.com/p/chromedriver/). | ||
An NPM wrapper for Selenium [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/). | ||
@@ -6,0 +6,0 @@ Building and Installing |
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
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
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
9989
3