webdriver 9.4.0 → 9.4.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/index.js +1 -1
- package/build/node.js +6 -2
- package/build/request/node.d.ts.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -1529,7 +1529,7 @@ var WebDriverResponseError = class _WebDriverResponseError extends WebDriverErro
|
|
|
1529
1529
|
// package.json
|
|
1530
1530
|
var package_default = {
|
|
1531
1531
|
name: "webdriver",
|
|
1532
|
-
version: "9.
|
|
1532
|
+
version: "9.4.0",
|
|
1533
1533
|
description: "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
1534
1534
|
author: "Christian Bromann <mail@bromann.dev>",
|
|
1535
1535
|
homepage: "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
package/build/node.js
CHANGED
|
@@ -1467,7 +1467,7 @@ var WebDriverResponseError = class _WebDriverResponseError extends WebDriverErro
|
|
|
1467
1467
|
// package.json
|
|
1468
1468
|
var package_default = {
|
|
1469
1469
|
name: "webdriver",
|
|
1470
|
-
version: "9.
|
|
1470
|
+
version: "9.4.0",
|
|
1471
1471
|
description: "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
1472
1472
|
author: "Christian Bromann <mail@bromann.dev>",
|
|
1473
1473
|
homepage: "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
|
@@ -1678,7 +1678,11 @@ var FetchRequest = class extends WebDriverRequest {
|
|
|
1678
1678
|
}
|
|
1679
1679
|
async createOptions(options, sessionId, isBrowser = false) {
|
|
1680
1680
|
const { url, requestOptions } = await super.createOptions(options, sessionId, isBrowser);
|
|
1681
|
-
const dispatcher = environment.value.variables.PROXY_URL ? new ProxyAgent(environment.value.variables.PROXY_URL) : new Agent({
|
|
1681
|
+
const dispatcher = environment.value.variables.PROXY_URL ? new ProxyAgent(environment.value.variables.PROXY_URL) : new Agent({
|
|
1682
|
+
connectTimeout: options.connectionRetryTimeout,
|
|
1683
|
+
headersTimeout: options.connectionRetryTimeout,
|
|
1684
|
+
bodyTimeout: options.connectionRetryTimeout
|
|
1685
|
+
});
|
|
1682
1686
|
requestOptions.dispatcher = dispatcher;
|
|
1683
1687
|
return { url, requestOptions };
|
|
1684
1688
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../src/request/node.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAMhD;;GAEG;AACH,qBAAa,YAAa,SAAQ,gBAAgB;IAC9C,KAAK,CAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,GACkB,OAAO,CAAC,QAAQ,CAAC;IAG/D,aAAa,CAAE,OAAO,EAAE,cAAc,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,SAAS,GAAE,OAAe;;;;
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../src/request/node.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAA;AAC/C,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,YAAY,CAAA;AAMhD;;GAEG;AACH,qBAAa,YAAa,SAAQ,gBAAgB;IAC9C,KAAK,CAAE,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,WAAW,GACkB,OAAO,CAAC,QAAQ,CAAC;IAG/D,aAAa,CAAE,OAAO,EAAE,cAAc,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,SAAS,GAAE,OAAe;;;;CAiB/F"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.1",
|
|
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",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"undici": "^6.20.1",
|
|
48
48
|
"ws": "^8.8.0"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "237685b97c0cee717c98ae9e906f738dab81004f"
|
|
51
51
|
}
|