selenium-webdriver
Advanced tools
Comparing version 4.9.1 to 4.9.2
@@ -0,1 +1,7 @@ | ||
## v4.9.2 | ||
#### :nail_care: Polish | ||
* Handle rejection of the driver if not found | ||
## v4.9.1 | ||
@@ -79,3 +85,3 @@ | ||
- Potapov Dmitriy ([@potapovDim](https://github.com/potapovDim)) | ||
* Potapov Dmitriy ([@potapovDim](https://github.com/potapovDim)) | ||
@@ -101,3 +107,3 @@ ## v4.7.0 | ||
* Fix typos (#11258) | ||
* Fix typos (#11258) | ||
@@ -157,3 +163,3 @@ ## v4.6.0 | ||
* Removing circular dependency Between webdriver.js and http.js | ||
* fix some typos in code and documentation | ||
* fix some typos in code and documentation | ||
* add cdp v105 remove v102 | ||
@@ -163,2 +169,3 @@ * add cdp v106 remove v103 | ||
## v4.4.0 | ||
* Add support CDP 104 and remove CDP 101 | ||
@@ -1294,2 +1301,1 @@ | ||
npm install selenium-webdriver | ||
@@ -137,3 +137,3 @@ // Licensed to the Software Freedom Conservancy (SFC) under one | ||
const result = new Promise((resolve) => { | ||
const result = new Promise((resolve, reject) => { | ||
proc.once('exit', (code, signal) => { | ||
@@ -144,2 +144,6 @@ proc = null | ||
}) | ||
proc.once('error', err => { | ||
reject(err); | ||
}) | ||
}) | ||
@@ -146,0 +150,0 @@ return new Command(result, killCommand) |
@@ -1,5 +0,4 @@ | ||
{ | ||
"name": "selenium-webdriver", | ||
"version": "4.9.1", | ||
"version": "4.9.2", | ||
"description": "The official WebDriver JavaScript bindings from the Selenium project", | ||
@@ -6,0 +5,0 @@ "license": "Apache-2.0", |
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
12347704
17530