webdriver 7.18.0 → 7.19.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/build/request/browser.js +1 -1
- package/package.json +8 -8
package/build/request/browser.js
CHANGED
|
@@ -22,7 +22,7 @@ class BrowserRequest extends index_1.default {
|
|
|
22
22
|
async _libRequest(url, options) {
|
|
23
23
|
const kyOptions = {};
|
|
24
24
|
for (const opt of Object.keys(options)) {
|
|
25
|
-
if (typeof options[opt] !== undefined &&
|
|
25
|
+
if (typeof options[opt] !== 'undefined' &&
|
|
26
26
|
UNSUPPORTED_OPTS.includes(opt) &&
|
|
27
27
|
options[opt] !== this.defaultOptions[opt]) {
|
|
28
28
|
log.info(`Browser-based webdriver does not support the '${String(opt)}' option; behavior may be unexpected`);
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.19.1",
|
|
4
4
|
"description": "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
5
|
-
"author": "Christian Bromann <
|
|
5
|
+
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"main": "./build",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@types/node": "^17.0.4",
|
|
29
|
-
"@wdio/config": "7.
|
|
30
|
-
"@wdio/logger": "7.
|
|
31
|
-
"@wdio/protocols": "7.
|
|
32
|
-
"@wdio/types": "7.
|
|
33
|
-
"@wdio/utils": "7.
|
|
29
|
+
"@wdio/config": "7.19.1",
|
|
30
|
+
"@wdio/logger": "7.19.0",
|
|
31
|
+
"@wdio/protocols": "7.19.0",
|
|
32
|
+
"@wdio/types": "7.19.1",
|
|
33
|
+
"@wdio/utils": "7.19.1",
|
|
34
34
|
"got": "^11.0.2",
|
|
35
35
|
"ky": "^0.30.0",
|
|
36
36
|
"lodash.merge": "^4.6.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "11be174dbad723750c8ab3fc9bc197f2f3534d1c"
|
|
39
39
|
}
|