webdriver 9.0.0-alpha.113 → 9.0.0-alpha.114
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/build/index.js +1 -1
- package/package.json +7 -7
package/build/index.js
CHANGED
|
@@ -102,7 +102,7 @@ export default class WebDriver {
|
|
|
102
102
|
* parse and propagate all Bidi events to the browser instance
|
|
103
103
|
*/
|
|
104
104
|
if (webSocketUrl) {
|
|
105
|
-
client.
|
|
105
|
+
client._bidiHandler?.socket.on('message', parseBidiMessage.bind(client));
|
|
106
106
|
}
|
|
107
107
|
return client;
|
|
108
108
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.114+b1a80c10f",
|
|
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,13 +38,13 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@types/node": "^20.1.0",
|
|
40
40
|
"@types/ws": "^8.5.3",
|
|
41
|
-
"@wdio/config": "9.0.0-alpha.
|
|
42
|
-
"@wdio/logger": "9.0.0-alpha.
|
|
43
|
-
"@wdio/protocols": "9.0.0-alpha.
|
|
44
|
-
"@wdio/types": "9.0.0-alpha.
|
|
45
|
-
"@wdio/utils": "9.0.0-alpha.
|
|
41
|
+
"@wdio/config": "9.0.0-alpha.114+b1a80c10f",
|
|
42
|
+
"@wdio/logger": "9.0.0-alpha.114+b1a80c10f",
|
|
43
|
+
"@wdio/protocols": "9.0.0-alpha.114+b1a80c10f",
|
|
44
|
+
"@wdio/types": "9.0.0-alpha.114+b1a80c10f",
|
|
45
|
+
"@wdio/utils": "9.0.0-alpha.114+b1a80c10f",
|
|
46
46
|
"deepmerge-ts": "^5.1.0",
|
|
47
47
|
"ws": "^8.8.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "b1a80c10f41091e6ecfd8c5abff14788a8de499b"
|
|
50
50
|
}
|