webdriverio 9.0.8 → 9.0.9
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.
|
@@ -4,7 +4,7 @@ import type { remote } from 'webdriver';
|
|
|
4
4
|
* just removes the single cookie or more when multiple names are passed.
|
|
5
5
|
*
|
|
6
6
|
* @alias browser.deleteCookies
|
|
7
|
-
* @param {
|
|
7
|
+
* @param {StorageCookieFilter[]} filter Use the filter property to identify and delete specific cookies based on matching criteria.
|
|
8
8
|
* @example https://github.com/webdriverio/example-recipes/blob/e8b147e88e7a38351b0918b4f7efbd9ae292201d/deleteCookies/example.js#L9-L29
|
|
9
9
|
* @example https://github.com/webdriverio/example-recipes/blob/e8b147e88e7a38351b0918b4f7efbd9ae292201d/deleteCookies/example.js#L31-L35
|
|
10
10
|
*/
|
package/build/index.js
CHANGED
|
@@ -6484,7 +6484,7 @@ async function findElement(selector) {
|
|
|
6484
6484
|
if (typeof selector === "string" && selector.startsWith(DEEP_SELECTOR)) {
|
|
6485
6485
|
const notFoundError = new Error(`shadow selector "${selector.slice(DEEP_SELECTOR.length)}" did not return an HTMLElement`);
|
|
6486
6486
|
let elem = await browserObject.execute(
|
|
6487
|
-
|
|
6487
|
+
querySelectorAllDeep,
|
|
6488
6488
|
false,
|
|
6489
6489
|
selector.slice(DEEP_SELECTOR.length),
|
|
6490
6490
|
// hard conversion from element id to Element is done by browser driver
|
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.0.
|
|
4
|
+
"version": "9.0.9",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -110,5 +110,5 @@
|
|
|
110
110
|
"optional": true
|
|
111
111
|
}
|
|
112
112
|
},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "758ad309d3af97f05c322aae5466fa0a882a3599"
|
|
114
114
|
}
|