webdriver 9.1.5 → 9.2.0
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.d.ts.map +1 -1
- package/build/index.cjs +3 -1
- package/build/index.js +4 -2
- package/package.json +3 -3
package/build/command.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command.d.ts","sourceRoot":"","sources":["../src/command.ts"],"names":[],"mappings":"AAEA,OAAO,EAAyB,KAAK,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAG7E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAgB,aAAa,EAAE,MAAM,YAAY,CAAA;AAKzE,MAAM,CAAC,OAAO,WACV,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,eAAe,EAC5B,qBAAqB,UAAQ,UAIgB,UAAU,WAAW,GAAG,EAAE,KAAG,OAAO,CAAC,iBAAiB,GAAG,aAAa,GAAG,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"command.d.ts","sourceRoot":"","sources":["../src/command.ts"],"names":[],"mappings":"AAEA,OAAO,EAAyB,KAAK,eAAe,EAAE,MAAM,iBAAiB,CAAA;AAG7E,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,oBAAoB,CAAA;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAgB,aAAa,EAAE,MAAM,YAAY,CAAA;AAKzE,MAAM,CAAC,OAAO,WACV,MAAM,EAAE,MAAM,EACd,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,eAAe,EAC5B,qBAAqB,UAAQ,UAIgB,UAAU,WAAW,GAAG,EAAE,KAAG,OAAO,CAAC,iBAAiB,GAAG,aAAa,GAAG,IAAI,CAAC,CA4J9H"}
|
package/build/index.cjs
CHANGED
|
@@ -179,7 +179,9 @@ For more info see ${ref}
|
|
|
179
179
|
`;
|
|
180
180
|
const body = {};
|
|
181
181
|
if (typeof deprecated === "string") {
|
|
182
|
-
|
|
182
|
+
const warning = deprecated.replace("This command", `The "${command2}" command`);
|
|
183
|
+
log.warn(warning);
|
|
184
|
+
console.warn(`\u26A0\uFE0F [WEBDRIVERIO DEPRECATION NOTICE] ${warning}`);
|
|
183
185
|
}
|
|
184
186
|
if (isBidiCommand) {
|
|
185
187
|
throw new Error(
|
package/build/index.js
CHANGED
|
@@ -1185,7 +1185,7 @@ var SHADOW_ELEMENT_KEY = "shadow-6066-11e4-a52e-4f735466cecf";
|
|
|
1185
1185
|
// package.json
|
|
1186
1186
|
var package_default = {
|
|
1187
1187
|
name: "webdriver",
|
|
1188
|
-
version: "9.1.
|
|
1188
|
+
version: "9.1.5",
|
|
1189
1189
|
description: "A Node.js bindings implementation for the W3C WebDriver and Mobile JSONWire Protocol",
|
|
1190
1190
|
author: "Christian Bromann <mail@bromann.dev>",
|
|
1191
1191
|
homepage: "https://github.com/webdriverio/webdriverio/tree/main/packages/webdriver",
|
|
@@ -1452,7 +1452,9 @@ For more info see ${ref}
|
|
|
1452
1452
|
`;
|
|
1453
1453
|
const body = {};
|
|
1454
1454
|
if (typeof deprecated === "string") {
|
|
1455
|
-
|
|
1455
|
+
const warning = deprecated.replace("This command", `The "${command}" command`);
|
|
1456
|
+
log4.warn(warning);
|
|
1457
|
+
console.warn(`\u26A0\uFE0F [WEBDRIVERIO DEPRECATION NOTICE] ${warning}`);
|
|
1456
1458
|
}
|
|
1457
1459
|
if (isBidiCommand) {
|
|
1458
1460
|
throw new Error(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriver",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
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",
|
|
@@ -37,11 +37,11 @@
|
|
|
37
37
|
"@types/ws": "^8.5.3",
|
|
38
38
|
"@wdio/config": "9.1.3",
|
|
39
39
|
"@wdio/logger": "9.1.3",
|
|
40
|
-
"@wdio/protocols": "9.0
|
|
40
|
+
"@wdio/protocols": "9.2.0",
|
|
41
41
|
"@wdio/types": "9.1.3",
|
|
42
42
|
"@wdio/utils": "9.1.3",
|
|
43
43
|
"deepmerge-ts": "^7.0.3",
|
|
44
44
|
"ws": "^8.8.0"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "d19039c7166c6df2e47a02de289a66865372107e"
|
|
47
47
|
}
|