webdriverio 9.0.9 → 9.1.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/commands/browser/newWindow.d.ts.map +1 -1
- package/build/commands/browser/switchWindow.d.ts.map +1 -1
- package/build/context.d.ts +1 -0
- package/build/context.d.ts.map +1 -1
- package/build/index.js +27 -13
- package/build/scripts/customElement.js +2 -2
- package/build/scripts/isElementDisplayed.js +2 -0
- package/build/shadowRoot.d.ts.map +1 -1
- package/build/utils/detectBackend.d.ts +0 -1
- package/build/utils/detectBackend.d.ts.map +1 -1
- package/build/utils/index.d.ts.map +1 -1
- package/package.json +7 -7
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"newWindow.d.ts","sourceRoot":"","sources":["../../../src/commands/browser/newWindow.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"newWindow.d.ts","sourceRoot":"","sources":["../../../src/commands/browser/newWindow.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAA;AAItD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqCG;AACH,wBAAsB,SAAS,CAC3B,IAAI,EAAE,WAAW,CAAC,OAAO,EACzB,GAAG,EAAE,MAAM,EACX,EAAE,UAAe,EAAE,cAAmB,EAAE,GAAE,gBAAqB,mBAiDlE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"switchWindow.d.ts","sourceRoot":"","sources":["../../../src/commands/browser/switchWindow.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"switchWindow.d.ts","sourceRoot":"","sources":["../../../src/commands/browser/switchWindow.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,wBAAsB,YAAY,CAC9B,IAAI,EAAE,WAAW,CAAC,OAAO,EACzB,OAAO,EAAE,MAAM,GAAG,MAAM,mBAmD3B"}
|
package/build/context.d.ts
CHANGED
package/build/context.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"AAMA,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,kBAS7D;AAED;;;;GAIG;AACH,qBAAa,cAAc;;gBAKX,OAAO,EAAE,WAAW,CAAC,OAAO;IAoBlC,UAAU;
|
|
1
|
+
{"version":3,"file":"context.d.ts","sourceRoot":"","sources":["../src/context.ts"],"names":[],"mappings":"AAMA,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,kBAS7D;AAED;;;;GAIG;AACH,qBAAa,cAAc;;gBAKX,OAAO,EAAE,WAAW,CAAC,OAAO;IAoBlC,UAAU;IAqBhB,iBAAiB,CAAE,OAAO,EAAE,MAAM;IAI5B,iBAAiB;CAM1B"}
|
package/build/index.js
CHANGED
|
@@ -3002,13 +3002,15 @@ var ContextManager = class {
|
|
|
3002
3002
|
*
|
|
3003
3003
|
* @param {local.BrowsingContextNavigationInfo} context browsing context used to navigate
|
|
3004
3004
|
*/
|
|
3005
|
-
#handleNavigationStarted(context) {
|
|
3006
|
-
this.#browser.getWindowHandle()
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
|
|
3011
|
-
|
|
3005
|
+
async #handleNavigationStarted(context) {
|
|
3006
|
+
const windowHandle = await this.#browser.getWindowHandle();
|
|
3007
|
+
if (context.context === windowHandle) {
|
|
3008
|
+
log4.info(`Update current context: ${context.context}`);
|
|
3009
|
+
this.#currentContext = context.context;
|
|
3010
|
+
}
|
|
3011
|
+
}
|
|
3012
|
+
setCurrentContext(context) {
|
|
3013
|
+
this.#currentContext = context;
|
|
3012
3014
|
}
|
|
3013
3015
|
async getCurrentContext() {
|
|
3014
3016
|
if (!this.#currentContext) {
|
|
@@ -3779,7 +3781,9 @@ async function newWindow(url6, { windowName = "", windowFeatures = "" } = {}) {
|
|
|
3779
3781
|
}
|
|
3780
3782
|
const tabsBefore = await this.getWindowHandles();
|
|
3781
3783
|
if (this.isBidi) {
|
|
3784
|
+
const contextManager2 = getContextManager(this);
|
|
3782
3785
|
const { context } = await this.browsingContextCreate({ type: "window" });
|
|
3786
|
+
contextManager2.setCurrentContext(context);
|
|
3783
3787
|
await this.browsingContextNavigate({ context, url: url6 });
|
|
3784
3788
|
} else {
|
|
3785
3789
|
await this.execute(newWindowHelper, url6, windowName, windowFeatures);
|
|
@@ -4071,8 +4075,10 @@ async function switchWindow(matcher) {
|
|
|
4071
4075
|
}
|
|
4072
4076
|
return !!target.match(matcher);
|
|
4073
4077
|
};
|
|
4078
|
+
const contextManager2 = getContextManager(this);
|
|
4074
4079
|
for (const tab of tabs) {
|
|
4075
4080
|
await this.switchToWindow(tab);
|
|
4081
|
+
contextManager2.setCurrentContext(tab);
|
|
4076
4082
|
const url6 = await this.getUrl();
|
|
4077
4083
|
if (matchesTarget(url6)) {
|
|
4078
4084
|
return tab;
|
|
@@ -4878,10 +4884,11 @@ var ShadowRootManager = class {
|
|
|
4878
4884
|
return;
|
|
4879
4885
|
}
|
|
4880
4886
|
this.#initialize = this.#browser.sessionSubscribe({
|
|
4881
|
-
events: ["log.entryAdded"]
|
|
4887
|
+
events: ["log.entryAdded", "browsingContext.navigationStarted"]
|
|
4882
4888
|
}).then(() => true, () => false);
|
|
4883
4889
|
this.#browser.on("log.entryAdded", this.handleLogEntry.bind(this));
|
|
4884
4890
|
this.#browser.on("result", this.#commandResultHandler.bind(this));
|
|
4891
|
+
this.#browser.on("browsingContext.navigationStarted", this.#handleNavigationStarted.bind(this));
|
|
4885
4892
|
browser.scriptAddPreloadScript({
|
|
4886
4893
|
functionDeclaration: customElementWrapper.toString()
|
|
4887
4894
|
});
|
|
@@ -4889,6 +4896,12 @@ var ShadowRootManager = class {
|
|
|
4889
4896
|
async initialize() {
|
|
4890
4897
|
return this.#initialize;
|
|
4891
4898
|
}
|
|
4899
|
+
/**
|
|
4900
|
+
* keep track of navigation events and remove shadow roots when they are no longer needed
|
|
4901
|
+
*/
|
|
4902
|
+
#handleNavigationStarted(context) {
|
|
4903
|
+
this.#shadowRoots.delete(context.context);
|
|
4904
|
+
}
|
|
4892
4905
|
/**
|
|
4893
4906
|
* keep track of frame depth
|
|
4894
4907
|
*/
|
|
@@ -5733,6 +5746,7 @@ var findStrategy = function(selector, isW3C, isMobile) {
|
|
|
5733
5746
|
let using = DEFAULT_STRATEGY;
|
|
5734
5747
|
let value = selector;
|
|
5735
5748
|
switch (defineStrategy(selector)) {
|
|
5749
|
+
// user has specified locator strategy directly
|
|
5736
5750
|
case "directly": {
|
|
5737
5751
|
const match = stringSelector.match(DIRECT_SELECTOR_REGEXP);
|
|
5738
5752
|
if (!match) {
|
|
@@ -6384,7 +6398,8 @@ function isStaleElementError(err) {
|
|
|
6384
6398
|
err.message.includes("stale element reference") || // Firefox
|
|
6385
6399
|
err.message.includes("is no longer attached to the DOM") || // Safari
|
|
6386
6400
|
err.message.toLowerCase().includes("stale element found") || // Chrome through JS execution
|
|
6387
|
-
err.message.includes("stale element not found in the current frame")
|
|
6401
|
+
err.message.includes("stale element not found in the current frame") || // BIDI
|
|
6402
|
+
err.message.includes("belongs to different document")
|
|
6388
6403
|
);
|
|
6389
6404
|
}
|
|
6390
6405
|
function transformClassicToBidiSelector(using, value) {
|
|
@@ -6533,7 +6548,7 @@ async function findElements(selector) {
|
|
|
6533
6548
|
const browserObject = getBrowserObject30(this);
|
|
6534
6549
|
if (typeof selector === "string" && selector.startsWith(DEEP_SELECTOR)) {
|
|
6535
6550
|
const elems = await browserObject.execute(
|
|
6536
|
-
|
|
6551
|
+
querySelectorAllDeep,
|
|
6537
6552
|
true,
|
|
6538
6553
|
selector.slice(DEEP_SELECTOR.length),
|
|
6539
6554
|
// hard conversion from element id to Element is done by browser driver
|
|
@@ -6892,7 +6907,6 @@ var REGION_MAPPING = {
|
|
|
6892
6907
|
// default endpoint
|
|
6893
6908
|
"eu": "eu-central-1.",
|
|
6894
6909
|
"eu-central-1": "eu-central-1.",
|
|
6895
|
-
"us-east-1": "us-east-1.",
|
|
6896
6910
|
"us-east-4": "us-east-4.",
|
|
6897
6911
|
"apac": "apac-southeast-1.",
|
|
6898
6912
|
"apac-southeast-1": "apac-southeast-1"
|
|
@@ -6907,7 +6921,7 @@ function getSauceEndpoint(region, { isRDC, isVisual } = {}) {
|
|
|
6907
6921
|
return `ondemand.${REGION_MAPPING[shortRegion]}saucelabs.com`;
|
|
6908
6922
|
}
|
|
6909
6923
|
function detectBackend(options = {}) {
|
|
6910
|
-
const { port, hostname, user, key, protocol, region,
|
|
6924
|
+
const { port, hostname, user, key, protocol, region, path: path4, capabilities } = options;
|
|
6911
6925
|
if (typeof user === "string" && typeof key === "string" && key.length === 20) {
|
|
6912
6926
|
return {
|
|
6913
6927
|
protocol: protocol || "https",
|
|
@@ -6927,7 +6941,7 @@ function detectBackend(options = {}) {
|
|
|
6927
6941
|
const isVisual = Boolean(!Array.isArray(capabilities) && capabilities && capabilities["sauce:visual"]?.apiKey);
|
|
6928
6942
|
if (typeof user === "string" && typeof key === "string" && key.length === 36 || // Or only RDC or visual
|
|
6929
6943
|
isVisual) {
|
|
6930
|
-
const sauceRegion =
|
|
6944
|
+
const sauceRegion = region;
|
|
6931
6945
|
return {
|
|
6932
6946
|
protocol: protocol || "https",
|
|
6933
6947
|
hostname: hostname || getSauceEndpoint(sauceRegion, { isVisual }),
|
|
@@ -9,12 +9,12 @@ function customElementWrapper() {
|
|
|
9
9
|
parentNode = parentNode.parentNode;
|
|
10
10
|
}
|
|
11
11
|
console.debug("[WDIO]", "newShadowRoot", this, parentNode, parentNode === document);
|
|
12
|
-
return origConnectedCallback
|
|
12
|
+
return origConnectedCallback?.call(this);
|
|
13
13
|
};
|
|
14
14
|
const origDisconnectedCallback = Constructor.prototype.disconnectedCallback;
|
|
15
15
|
Constructor.prototype.disconnectedCallback = function() {
|
|
16
16
|
console.debug("[WDIO]", "removeShadowRoot", this);
|
|
17
|
-
return origDisconnectedCallback
|
|
17
|
+
return origDisconnectedCallback?.call(this);
|
|
18
18
|
};
|
|
19
19
|
return origFn(name, Constructor, options);
|
|
20
20
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shadowRoot.d.ts","sourceRoot":"","sources":["../src/shadowRoot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,WAAW,CAAA;AAQtC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,qBAShE;AAED;;;;GAIG;AACH,qBAAa,iBAAiB;;gBAMd,OAAO,EAAE,WAAW,CAAC,OAAO;
|
|
1
|
+
{"version":3,"file":"shadowRoot.d.ts","sourceRoot":"","sources":["../src/shadowRoot.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,WAAW,CAAA;AAQtC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,WAAW,CAAC,OAAO,qBAShE;AAED;;;;GAIG;AACH,qBAAa,iBAAiB;;gBAMd,OAAO,EAAE,WAAW,CAAC,OAAO;IAyBlC,UAAU;IAuBhB;;;OAGG;IACH,aAAa;IAIb;;OAEG;IACH,cAAc,CAAC,QAAQ,EAAE,KAAK,CAAC,QAAQ;IA2FvC,4BAA4B,CAAE,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE;IAmB1E,gCAAgC,CAAE,SAAS,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,GAAG,SAAS,CAAC,EAAE;IAgBpG,qBAAqB,CAAE,SAAS,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS;IActF,gBAAgB,CAAE,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM;CAOvD;AAED,qBAAa,cAAc;IACvB,OAAO,EAAE,MAAM,CAAA;IACf,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,cAAc,CAAA;IACrB,QAAQ,sBAA4B;gBAEvB,OAAO,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,cAAc;IAMxE;;OAEG;IACH,gBAAgB,CAAE,IAAI,EAAE,cAAc,GAAG,IAAI;IAC7C;;;;;OAKG;IACH,gBAAgB,CAAE,KAAK,EAAE,MAAM,EAAE,IAAI,EAAE,cAAc,GAAG,IAAI;IA6B5D,IAAI,CAAE,OAAO,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS;IAelD,cAAc,CAAE,UAAU,EAAE,MAAM,GAAG,cAAc,GAAG,SAAS;IAe/D,kBAAkB,IAAK,MAAM,EAAE;IAO/B,IAAI,IAAK,cAAc,EAAE;IAIzB,MAAM,CAAE,OAAO,EAAE,MAAM,GAAG,OAAO;CAcpC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"detectBackend.d.ts","sourceRoot":"","sources":["../../src/utils/detectBackend.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;
|
|
1
|
+
{"version":3,"file":"detectBackend.d.ts","sourceRoot":"","sources":["../../src/utils/detectBackend.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,aAAa,CAAA;AAiBxD,UAAU,qBAAqB;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC,YAAY,CAAA;IAC7B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,YAAY,CAAC,EAAE,YAAY,CAAC,+BAA+B,CAAA;CAC9D;AAgBD;;GAEG;AACH,MAAM,CAAC,OAAO,UAAU,aAAa,CAAC,OAAO,GAAE,qBAA0B;;;;;EAkGxE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,KAAK,MAAM,EAAe,MAAM,WAAW,CAAA;AAEpD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAA;AAQvD,OAAO,EAAwB,KAAK,iBAAiB,EAAE,MAAM,kBAAkB,CAAA;AAE/E,OAAO,KAAK,EAAmB,QAAQ,EAAE,cAAc,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAA;AAOtG,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,MAAM;QAAG,cAAc,EAAE,MAAM,CAAC,MAAM,EAAE,WAAW,CAAC,CAAA;KAAE;CACnE;AAiBD;;GAEG;AACH,eAAO,MAAM,YAAY,UAAW,SAAS,GAAG,SAAS,uCAexD,CAAA;AAED;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,SAAU,gBAAgB,kBAuB5D,CAAA;AAWD;;;;;GAKG;AACH,wBAAgB,QAAQ,CAAE,gBAAgB,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,kBAkDvE;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAAE,KAAK,EAAE,MAAM,YAgB1C;AAuBD,wBAAgB,SAAS,CAAE,CAAC,EAAE,QAAQ,gBAMrC;AAED,wBAAgB,mBAAmB,CAAE,GAAG,EAAE,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriverio",
|
|
3
3
|
"description": "Next-gen browser and mobile automation test framework for Node.js",
|
|
4
|
-
"version": "9.
|
|
4
|
+
"version": "9.1.1",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -76,12 +76,12 @@
|
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"@types/node": "^20.11.30",
|
|
78
78
|
"@types/sinonjs__fake-timers": "^8.1.5",
|
|
79
|
-
"@wdio/config": "9.0
|
|
80
|
-
"@wdio/logger": "9.0
|
|
79
|
+
"@wdio/config": "9.1.0",
|
|
80
|
+
"@wdio/logger": "9.1.0",
|
|
81
81
|
"@wdio/protocols": "9.0.8",
|
|
82
82
|
"@wdio/repl": "9.0.8",
|
|
83
|
-
"@wdio/types": "9.0
|
|
84
|
-
"@wdio/utils": "9.0
|
|
83
|
+
"@wdio/types": "9.1.0",
|
|
84
|
+
"@wdio/utils": "9.1.0",
|
|
85
85
|
"archiver": "^7.0.1",
|
|
86
86
|
"aria-query": "^5.3.0",
|
|
87
87
|
"cheerio": "^1.0.0-rc.12",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"rgb2hex": "0.2.5",
|
|
101
101
|
"serialize-error": "^11.0.3",
|
|
102
102
|
"urlpattern-polyfill": "^10.0.0",
|
|
103
|
-
"webdriver": "9.
|
|
103
|
+
"webdriver": "9.1.1"
|
|
104
104
|
},
|
|
105
105
|
"peerDependencies": {
|
|
106
106
|
"puppeteer-core": "^22.3.0"
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"optional": true
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "f70367e464d7c056328cd7d8e57ea296c0e766ae"
|
|
114
114
|
}
|