webdriver 6.12.0 → 6.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ WebDriver
|
|
|
3
3
|
|
|
4
4
|
> A lightweight, non-opinionated implementation of the [WebDriver specification](https://w3c.github.io/webdriver/webdriver-spec.html) including mobile commands supported by [Appium](http://appium.io/)
|
|
5
5
|
|
|
6
|
-
There are [tons](https://github.com/christian-bromann/awesome-selenium#javascript) of Selenium and WebDriver binding implementations in the Node.js world. Every one of them have an opinionated API and recommended way to use. This binding is the most non-opinionated you will find as it just represents the [WebDriver specification](https://w3c.github.io/webdriver/webdriver-spec.html) and doesn't come with any extra or higher level abstraction. It is lightweight and comes with support for the [WebDriver specification](https://w3c.github.io/webdriver/webdriver-spec.html) and
|
|
6
|
+
There are [tons](https://github.com/christian-bromann/awesome-selenium#javascript) of Selenium and WebDriver binding implementations in the Node.js world. Every one of them have an opinionated API and recommended way to use. This binding is the most non-opinionated you will find as it just represents the [WebDriver specification](https://w3c.github.io/webdriver/webdriver-spec.html) and doesn't come with any extra or higher level abstraction. It is lightweight and comes with support for the [WebDriver specification](https://w3c.github.io/webdriver/webdriver-spec.html) and Appium's [Mobile JSONWire Protocol](https://github.com/appium/appium-base-driver/blob/master/docs/mjsonwp/protocol-methods.md).
|
|
7
7
|
|
|
8
8
|
## Install
|
|
9
9
|
|
|
@@ -90,7 +90,7 @@ Type: `String`<br>
|
|
|
90
90
|
Default: */*
|
|
91
91
|
|
|
92
92
|
### queryParams
|
|
93
|
-
Query
|
|
93
|
+
Query parameters that are propagated to the driver server.
|
|
94
94
|
|
|
95
95
|
Type: `Object`
|
|
96
96
|
Default: `null`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "6.12.
|
|
3
|
+
"version": "6.12.1",
|
|
4
4
|
"description": "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
5
5
|
"author": "Christian Bromann <christian@saucelabs.com>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/master/packages/webdriver",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"@types/lodash.merge": "^4.6.6"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@wdio/config": "6.
|
|
28
|
+
"@wdio/config": "6.12.1",
|
|
29
29
|
"@wdio/logger": "6.10.10",
|
|
30
30
|
"@wdio/protocols": "6.12.0",
|
|
31
31
|
"@wdio/utils": "6.11.0",
|
|
32
32
|
"got": "^11.0.2",
|
|
33
33
|
"lodash.merge": "^4.6.1"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "063970498c9b1142482a1a035aa699c64cc8215c"
|
|
36
36
|
}
|