webdriver 8.16.4 → 8.16.7
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 +4 -4
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -111,13 +111,13 @@ Options: *http* | *https*
|
|
|
111
111
|
Host of your WebDriver server.
|
|
112
112
|
|
|
113
113
|
Type: `String`<br />
|
|
114
|
-
Default: *
|
|
114
|
+
Default: *0.0.0.0*
|
|
115
115
|
|
|
116
116
|
### port
|
|
117
117
|
Port your WebDriver server is on.
|
|
118
118
|
|
|
119
119
|
Type: `Number`<br />
|
|
120
|
-
Default:
|
|
120
|
+
Default: `undefined`
|
|
121
121
|
|
|
122
122
|
### path
|
|
123
123
|
Path to WebDriver endpoint or grid server.
|
|
@@ -129,7 +129,7 @@ Default: */*
|
|
|
129
129
|
Query parameters that are propagated to the driver server.
|
|
130
130
|
|
|
131
131
|
Type: `Object`
|
|
132
|
-
Default: `
|
|
132
|
+
Default: `undefined`
|
|
133
133
|
|
|
134
134
|
### connectionRetryTimeout
|
|
135
135
|
Timeout for any WebDriver request to a driver or grid.
|
|
@@ -141,7 +141,7 @@ Default: *120000*
|
|
|
141
141
|
Count of request retries to the Selenium server.
|
|
142
142
|
|
|
143
143
|
Type: `Number`<br />
|
|
144
|
-
Default: *
|
|
144
|
+
Default: *3*
|
|
145
145
|
|
|
146
146
|
### agent
|
|
147
147
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "8.16.
|
|
3
|
+
"version": "8.16.7",
|
|
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,15 +38,15 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@types/node": "^20.1.0",
|
|
40
40
|
"@types/ws": "^8.5.3",
|
|
41
|
-
"@wdio/config": "8.16.
|
|
41
|
+
"@wdio/config": "8.16.7",
|
|
42
42
|
"@wdio/logger": "8.11.0",
|
|
43
|
-
"@wdio/protocols": "8.
|
|
44
|
-
"@wdio/types": "8.16.
|
|
45
|
-
"@wdio/utils": "8.16.
|
|
43
|
+
"@wdio/protocols": "8.16.5",
|
|
44
|
+
"@wdio/types": "8.16.7",
|
|
45
|
+
"@wdio/utils": "8.16.7",
|
|
46
46
|
"deepmerge-ts": "^5.1.0",
|
|
47
47
|
"got": "^ 12.6.1",
|
|
48
|
-
"ky": "^
|
|
48
|
+
"ky": "^0.33.0",
|
|
49
49
|
"ws": "^8.8.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "15f7f225e6a81ea0e5e7a9ba8067ca59007f09c2"
|
|
52
52
|
}
|