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

selenium-standalone

Package Overview
Dependencies
Maintainers
10
Versions
169
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

selenium-standalone - npm Package Compare versions

Comparing version 8.2.1 to 8.2.2

11

lib/compute-download-urls.js

@@ -104,3 +104,3 @@ module.exports = computeDownloadUrls;

opts.drivers.chromiumedge.version,
getChromiumEdgeDriverArchitecture(opts.drivers.chromiumedge.arch)
getChromiumEdgeDriverArchitecture(opts.drivers.chromiumedge.arch, opts.drivers.chromiumedge.version)
);

@@ -186,3 +186,3 @@ }

function getChromiumEdgeDriverArchitecture(wantedArchitecture) {
function getChromiumEdgeDriverArchitecture(wantedArchitecture, version) {
let platform;

@@ -193,3 +193,8 @@

} else if (process.platform === 'darwin') {
platform = 'mac64';
if (process.arch === 'arm64') {
const [major] = version.split('.');
platform = parseInt(major, 10) > 104 ? 'mac64_m1' : 'mac64';
} else {
platform = 'mac64';
}
} else if (wantedArchitecture === 'x32') {

@@ -196,0 +201,0 @@ platform = 'win32';

{
"name": "selenium-standalone",
"version": "8.2.1",
"version": "8.2.2",
"description": "installs a `selenium-standalone` command line to install and start a standalone selenium server",

@@ -5,0 +5,0 @@ "main": "index.js",

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