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

selenium-webdriver

Package Overview
Dependencies
Maintainers
3
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.0.0-alpha.3 to 4.0.0-alpha.4

LICENSE

9

CHANGES.md

@@ -1,3 +0,10 @@

## v4.0.0-alpha.2
## v4.0.0-alpha.4
### Changes
* Removed BUILD.bazel files from the build artifact
## v4.0.0-alpha.3
### Notice

@@ -4,0 +11,0 @@

@@ -169,5 +169,22 @@ // Licensed to the Software Freedom Conservancy (SFC) under one

let buf = await archive.getFile('manifest.json');
let {applications} =
/** @type {{applications:{gecko:{id:string}}}} */(
JSON.parse(buf.toString('utf8')));
let parsedJSON = JSON.parse(buf.toString('utf8'));
let { browser_specific_settings } =
/** @type {{browser_specific_settings:{gecko:{id:string}}}} */
parsedJSON;
if (
browser_specific_settings &&
browser_specific_settings.gecko
) {
/* browser_specific_settings is an alternative to applications
* It is meant to facilitate cross-browser plugins since Firefox48
* see https://bugzilla.mozilla.org/show_bug.cgi?id=1262005
*/
parsedJSON.applications = browser_specific_settings;
}
let { applications } =
/** @type {{applications:{gecko:{id:string}}}} */
parsedJSON;
if (!(applications && applications.gecko && applications.gecko.id)) {

@@ -174,0 +191,0 @@ throw new AddonFormatError(`Could not find add-on ID for ${extension}`);

2

package.json
{
"name": "selenium-webdriver",
"version": "4.0.0-alpha.3",
"version": "4.0.0-alpha.4",
"description": "The official WebDriver JavaScript bindings from the Selenium project",

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