webdriver 7.20.6 → 7.20.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/build/command.js +1 -1
- package/build/request/browser.d.ts +1 -1
- package/package.json +6 -6
package/build/command.js
CHANGED
|
@@ -79,7 +79,7 @@ function default_1(method, endpointUri, commandInfo, doubleEncodeVariables = fal
|
|
|
79
79
|
? `${result.value.substr(0, 61)}...` : result.value);
|
|
80
80
|
}
|
|
81
81
|
this.emit('result', { method, endpoint, body, result });
|
|
82
|
-
if (command === 'deleteSession') {
|
|
82
|
+
if (command === 'deleteSession' && !process.env.WDIO_WORKER_ID) {
|
|
83
83
|
logger_1.default.clearLogger();
|
|
84
84
|
}
|
|
85
85
|
return result.value;
|
|
@@ -7,7 +7,7 @@ export default class BrowserRequest extends WebDriverRequest {
|
|
|
7
7
|
protected _createOptions(options: RequestOptions, sessionId?: string): RequestLibOptions;
|
|
8
8
|
protected _libRequest(url: URL, options: RequestLibOptions): Promise<{
|
|
9
9
|
statusCode: number;
|
|
10
|
-
body:
|
|
10
|
+
body: any;
|
|
11
11
|
}>;
|
|
12
12
|
protected _libPerformanceNow(): number;
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "7.20.
|
|
3
|
+
"version": "7.20.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",
|
|
@@ -26,14 +26,14 @@
|
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@types/node": "^18.0.0",
|
|
29
|
-
"@wdio/config": "7.20.
|
|
29
|
+
"@wdio/config": "7.20.7",
|
|
30
30
|
"@wdio/logger": "7.19.0",
|
|
31
31
|
"@wdio/protocols": "7.20.6",
|
|
32
|
-
"@wdio/types": "7.20.
|
|
33
|
-
"@wdio/utils": "7.20.
|
|
32
|
+
"@wdio/types": "7.20.7",
|
|
33
|
+
"@wdio/utils": "7.20.7",
|
|
34
34
|
"got": "^11.0.2",
|
|
35
|
-
"ky": "
|
|
35
|
+
"ky": "0.30.0",
|
|
36
36
|
"lodash.merge": "^4.6.1"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "21b8b61453f4749d87eca3e4d7d6e5e2cb60f043"
|
|
39
39
|
}
|