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

generic-webdriver-server

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generic-webdriver-server - npm Package Compare versions

Comparing version 1.0.4 to 1.1.0

Edgium.md

5

CHANGELOG.md

@@ -0,1 +1,6 @@

## 1.1.0 (2020-12-22)
Document setup with Chromium-based Edge. Although this didn't require any code
changes, it is worth a feature release to properly document this feature.
## 1.0.4 (2020-08-04)

@@ -2,0 +7,0 @@

2

package.json
{
"name": "generic-webdriver-server",
"description": "A generic WebDriver server base class and a Selenium add-on to invoke it.",
"version": "1.0.4",
"version": "1.1.0",
"homepage": "https://github.com/google/generic-webdriver-server",

@@ -6,0 +6,0 @@ "author": "Google",

@@ -42,2 +42,10 @@ # Generic WebDriver Server

## Chromium-based Edge
In addition to the backends we provide, you can also use this generic backend to
support Chromium-based Edge in Selenium 3, in spite of [Selenium's recent
decision not to support it directly.](https://github.com/SeleniumHQ/selenium/issues/8237#issuecomment-629851734)
For details on setup for Chromium-based Edge, see [Edgium.md](https://github.com/google/generic-webdriver-server/blob/main/Edgium.md)
## How it works

@@ -44,0 +52,0 @@

@@ -33,2 +33,23 @@ # Generic WebDriver Server Setup

*NOTE: On Windows, the classpath separator is a semicolon (`;`), not a colon
(`:`).* So on Windows, you would use something like this in bash:
```sh
java \
-cp node_modules/generic-webdriver-server/GenericWebDriverProvider.jar\;node_modules/generic-webdriver-server/selenium-server-standalone-3.141.59.jar \
org.openqa.grid.selenium.GridLauncherV3 \
-role node \
-nodeConfig foo.json
```
Or this in a batch file:
```bat
java ^
-cp node_modules\generic-webdriver-server\GenericWebDriverProvider.jar;node_modules\generic-webdriver-server\selenium-server-standalone-3.141.59.jar ^
org.openqa.grid.selenium.GridLauncherV3 ^
-role node ^
-nodeConfig foo.json
```
You also need to configure `GenericWebDriverProvider.jar` with Java system

@@ -35,0 +56,0 @@ properties so it knows which backend to start. This is done with `-D` arguments

Sorry, the diff of this file is not supported yet

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