Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

selenium-webdriver

Package Overview
Dependencies
Maintainers
8
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

selenium-webdriver - npm Package Compare versions

Comparing version 4.9.1 to 4.9.2

14

CHANGES.md

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc