webdriver 9.6.0 → 9.6.2
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/build/index.js +1 -1
- package/build/node.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ The package supports the following protocols:
|
|
|
13
13
|
- [Chromium](http://chromedriver.chromium.org/) (additional Chromedriver specific commands)
|
|
14
14
|
- [Selenium](https://www.selenium.dev/) (additional Selenium WebDriver specific commands)
|
|
15
15
|
- [Sauce Labs](https://saucelabs.com/) (Sauce Labs specific WebDriver extensions)
|
|
16
|
-
- [JSONWireProtocol](https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol) (
|
|
17
|
-
- [Mobile JSONWireProtocol](https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md) (
|
|
16
|
+
- [JSONWireProtocol](https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol) (deprecated)
|
|
17
|
+
- [Mobile JSONWireProtocol](https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md) (deprecated)
|
|
18
18
|
|
|
19
19
|
Commands are added to the client's protocol based on assumptions of provided capabilities. You can find more details about the commands by checking out the [`@wdio/protocols`](https://www.npmjs.com/package/@wdio/protocols) package. All commands come with TypeScript support.
|
|
20
20
|
|
package/build/index.js
CHANGED
|
@@ -1575,7 +1575,7 @@ var WebDriverResponseError = class _WebDriverResponseError extends WebDriverErro
|
|
|
1575
1575
|
// package.json
|
|
1576
1576
|
var package_default = {
|
|
1577
1577
|
name: "webdriver",
|
|
1578
|
-
version: "9.
|
|
1578
|
+
version: "9.6.0",
|
|
1579
1579
|
description: "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
1580
1580
|
author: "Christian Bromann <mail@bromann.dev>",
|
|
1581
1581
|
homepage: "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
package/build/node.js
CHANGED
|
@@ -1514,7 +1514,7 @@ var WebDriverResponseError = class _WebDriverResponseError extends WebDriverErro
|
|
|
1514
1514
|
// package.json
|
|
1515
1515
|
var package_default = {
|
|
1516
1516
|
name: "webdriver",
|
|
1517
|
-
version: "9.
|
|
1517
|
+
version: "9.6.0",
|
|
1518
1518
|
description: "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
1519
1519
|
author: "Christian Bromann <mail@bromann.dev>",
|
|
1520
1520
|
homepage: "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "9.6.
|
|
3
|
+
"version": "9.6.2",
|
|
4
4
|
"description": "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@types/node": "^20.1.0",
|
|
40
40
|
"@types/ws": "^8.5.3",
|
|
41
|
-
"@wdio/config": "9.
|
|
41
|
+
"@wdio/config": "9.6.2",
|
|
42
42
|
"@wdio/logger": "9.4.4",
|
|
43
43
|
"@wdio/protocols": "9.4.4",
|
|
44
|
-
"@wdio/types": "9.
|
|
45
|
-
"@wdio/utils": "9.
|
|
44
|
+
"@wdio/types": "9.6.2",
|
|
45
|
+
"@wdio/utils": "9.6.2",
|
|
46
46
|
"deepmerge-ts": "^7.0.3",
|
|
47
47
|
"undici": "^6.20.1",
|
|
48
48
|
"ws": "^8.8.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "918477b20c54c27b98655b08f55a2a304495f0fa"
|
|
51
51
|
}
|