generic-webdriver-server
Advanced tools
Comparing version 1.0.4 to 1.1.0
@@ -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 @@ |
{ | ||
"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 @@ |
21
setup.md
@@ -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
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
10710357
13
65