appium-uiautomator2-driver 2.31.3 → 2.32.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/CHANGELOG.md +14 -0
- package/README.md +13 -0
- package/build/lib/commands/general.d.ts.map +1 -1
- package/build/lib/commands/general.js +17 -11
- package/build/lib/commands/general.js.map +1 -1
- package/build/lib/driver.d.ts +7 -0
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/execute-method-map.d.ts +7 -0
- package/build/lib/execute-method-map.d.ts.map +1 -1
- package/build/lib/execute-method-map.js +7 -0
- package/build/lib/execute-method-map.js.map +1 -1
- package/build/lib/uiautomator2.d.ts +2 -2
- package/build/lib/uiautomator2.d.ts.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/lib/commands/general.js +21 -13
- package/lib/execute-method-map.ts +8 -0
- package/npm-shrinkwrap.json +168 -152
- package/package.json +7 -7
package/lib/commands/general.js
CHANGED
|
@@ -7,6 +7,8 @@ import {APK_EXTENSION} from '../extensions';
|
|
|
7
7
|
import {mixin} from './mixins';
|
|
8
8
|
import {AndroidUiautomator2Driver} from '../driver';
|
|
9
9
|
|
|
10
|
+
const MOBILE_SCRIPT_NAME_PREFIX = 'mobile:';
|
|
11
|
+
|
|
10
12
|
/**
|
|
11
13
|
* Massages the arguments going into an execute method.
|
|
12
14
|
* @remarks A similar method is implemented in `appium-xcuitest-driver`, but it
|
|
@@ -38,10 +40,12 @@ function preprocessExecuteMethodArgs(args) {
|
|
|
38
40
|
* Type guard to check if a script is an execute method.
|
|
39
41
|
* @param {any} script
|
|
40
42
|
* @internal
|
|
41
|
-
* @returns {
|
|
43
|
+
* @returns {string?}
|
|
42
44
|
*/
|
|
43
|
-
function
|
|
44
|
-
return script
|
|
45
|
+
function toExecuteMethodName(script) {
|
|
46
|
+
return _.startsWith(script, MOBILE_SCRIPT_NAME_PREFIX)
|
|
47
|
+
? script.replace(new RegExp(`${MOBILE_SCRIPT_NAME_PREFIX}\\s*`), `${MOBILE_SCRIPT_NAME_PREFIX} `)
|
|
48
|
+
: null;
|
|
45
49
|
}
|
|
46
50
|
|
|
47
51
|
/**
|
|
@@ -127,13 +131,16 @@ const GeneralMixin = {
|
|
|
127
131
|
* into `BaseDriver.executeMethod`.
|
|
128
132
|
*/
|
|
129
133
|
async execute(script, args) {
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
134
|
+
const mobileScriptName = toExecuteMethodName(script);
|
|
135
|
+
const isWebContext = this.isWebContext();
|
|
136
|
+
if (mobileScriptName && isWebContext || !isWebContext) {
|
|
137
|
+
if (mobileScriptName) {
|
|
138
|
+
const executeMethodArgs = preprocessExecuteMethodArgs(args);
|
|
139
|
+
this.log.info(`Executing method '${mobileScriptName}'`);
|
|
140
|
+
return await this.executeMobile(mobileScriptName, executeMethodArgs);
|
|
141
|
+
}
|
|
142
|
+
// Just pass the script name through and let it fail with a proper error message
|
|
143
|
+
return await this.executeMobile(`${script}`, {});
|
|
137
144
|
}
|
|
138
145
|
const endpoint =
|
|
139
146
|
/** @type {import('appium-chromedriver').Chromedriver} */ (this.chromedriver).jwproxy
|
|
@@ -153,9 +160,10 @@ const GeneralMixin = {
|
|
|
153
160
|
* @override
|
|
154
161
|
*/
|
|
155
162
|
async executeMobile(script, opts = {}) {
|
|
156
|
-
if (!
|
|
157
|
-
const commandNames = _.map(
|
|
158
|
-
|
|
163
|
+
if (!(script in AndroidUiautomator2Driver.executeMethodMap)) {
|
|
164
|
+
const commandNames = _.map(
|
|
165
|
+
_.keys(AndroidUiautomator2Driver.executeMethodMap),
|
|
166
|
+
(value) => value.slice(8)
|
|
159
167
|
);
|
|
160
168
|
throw new errors.UnknownCommandError(
|
|
161
169
|
`Unknown mobile command "${script}". ` +
|
|
@@ -112,6 +112,14 @@ export const executeMethodMap = {
|
|
|
112
112
|
command: 'mobileStopLogsBroadcast',
|
|
113
113
|
},
|
|
114
114
|
|
|
115
|
+
'mobile: deviceidle': {
|
|
116
|
+
command: 'mobileDeviceidle',
|
|
117
|
+
params: {
|
|
118
|
+
required: ['action'],
|
|
119
|
+
optional: ['packages'],
|
|
120
|
+
},
|
|
121
|
+
},
|
|
122
|
+
|
|
115
123
|
'mobile: acceptAlert': {
|
|
116
124
|
command: 'mobileAcceptAlert',
|
|
117
125
|
params: {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.32.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-uiautomator2-driver",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.32.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"appium-adb": "^9.14.12",
|
|
13
|
-
"appium-android-driver": "^7.0
|
|
13
|
+
"appium-android-driver": "^7.1.0",
|
|
14
14
|
"appium-chromedriver": "^5.6.5",
|
|
15
15
|
"appium-uiautomator2-server": "^5.12.2",
|
|
16
16
|
"asyncbox": "^2.3.1",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"portscanner": "^2.2.0",
|
|
22
22
|
"source-map-support": "^0.x",
|
|
23
23
|
"teen_process": "^2.0.0",
|
|
24
|
-
"type-fest": "^
|
|
24
|
+
"type-fest": "^4.4.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@appium/docutils": "^0.4.4",
|
|
@@ -64,16 +64,16 @@
|
|
|
64
64
|
"eslint-plugin-promise": "^6.1.1",
|
|
65
65
|
"fancy-log": "^2.0.0",
|
|
66
66
|
"husky": "^8.0.3",
|
|
67
|
-
"lint-staged": "^
|
|
67
|
+
"lint-staged": "^15.0.1",
|
|
68
68
|
"mocha": "^10.0.0",
|
|
69
|
-
"prettier": "^
|
|
69
|
+
"prettier": "^3.0.3",
|
|
70
70
|
"rimraf": "^5.0.0",
|
|
71
|
-
"semantic-release": "^
|
|
71
|
+
"semantic-release": "^22.0.5",
|
|
72
72
|
"sharp": "^0.x",
|
|
73
73
|
"sinon": "^16.1.0",
|
|
74
74
|
"sinon-chai": "^3.7.0",
|
|
75
75
|
"ts-node": "^10.9.1",
|
|
76
|
-
"typescript": "~5.
|
|
76
|
+
"typescript": "~5.2",
|
|
77
77
|
"unzipper": "^0.x",
|
|
78
78
|
"webdriverio": "^8.0.5",
|
|
79
79
|
"xpath": "^0.x"
|
|
@@ -138,6 +138,16 @@
|
|
|
138
138
|
"proxy-from-env": "^1.1.0"
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
|
+
"node_modules/@appium/base-driver/node_modules/type-fest": {
|
|
142
|
+
"version": "3.13.1",
|
|
143
|
+
"license": "(MIT OR CC0-1.0)",
|
|
144
|
+
"engines": {
|
|
145
|
+
"node": ">=14.16"
|
|
146
|
+
},
|
|
147
|
+
"funding": {
|
|
148
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
141
151
|
"node_modules/@appium/base-plugin": {
|
|
142
152
|
"version": "2.2.20",
|
|
143
153
|
"extraneous": true,
|
|
@@ -192,6 +202,61 @@
|
|
|
192
202
|
"npm": ">=8"
|
|
193
203
|
}
|
|
194
204
|
},
|
|
205
|
+
"node_modules/@appium/docutils/node_modules/@appium/typedoc-plugin-appium": {
|
|
206
|
+
"version": "0.6.6",
|
|
207
|
+
"dev": true,
|
|
208
|
+
"license": "Apache-2.0",
|
|
209
|
+
"dependencies": {
|
|
210
|
+
"handlebars": "4.7.8",
|
|
211
|
+
"lodash": "4.17.21",
|
|
212
|
+
"pluralize": "8.0.0",
|
|
213
|
+
"type-fest": "3.13.1"
|
|
214
|
+
},
|
|
215
|
+
"engines": {
|
|
216
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
217
|
+
"npm": ">=8"
|
|
218
|
+
},
|
|
219
|
+
"peerDependencies": {
|
|
220
|
+
"appium": "^2.0.0-beta.48",
|
|
221
|
+
"typedoc": "~0.23.14",
|
|
222
|
+
"typedoc-plugin-markdown": "3.14.0",
|
|
223
|
+
"typedoc-plugin-resolve-crossmodule-references": "~0.3.3",
|
|
224
|
+
"typescript": "^4.7.0 || ^5.0.0"
|
|
225
|
+
}
|
|
226
|
+
},
|
|
227
|
+
"node_modules/@appium/docutils/node_modules/brace-expansion": {
|
|
228
|
+
"version": "2.0.1",
|
|
229
|
+
"dev": true,
|
|
230
|
+
"license": "MIT",
|
|
231
|
+
"dependencies": {
|
|
232
|
+
"balanced-match": "^1.0.0"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"node_modules/@appium/docutils/node_modules/marked": {
|
|
236
|
+
"version": "4.3.0",
|
|
237
|
+
"dev": true,
|
|
238
|
+
"license": "MIT",
|
|
239
|
+
"bin": {
|
|
240
|
+
"marked": "bin/marked.js"
|
|
241
|
+
},
|
|
242
|
+
"engines": {
|
|
243
|
+
"node": ">= 12"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"node_modules/@appium/docutils/node_modules/minimatch": {
|
|
247
|
+
"version": "7.4.6",
|
|
248
|
+
"dev": true,
|
|
249
|
+
"license": "ISC",
|
|
250
|
+
"dependencies": {
|
|
251
|
+
"brace-expansion": "^2.0.1"
|
|
252
|
+
},
|
|
253
|
+
"engines": {
|
|
254
|
+
"node": ">=10"
|
|
255
|
+
},
|
|
256
|
+
"funding": {
|
|
257
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
195
260
|
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
196
261
|
"version": "2.0.4",
|
|
197
262
|
"dev": true,
|
|
@@ -207,6 +272,74 @@
|
|
|
207
272
|
"npm": ">=8"
|
|
208
273
|
}
|
|
209
274
|
},
|
|
275
|
+
"node_modules/@appium/docutils/node_modules/type-fest": {
|
|
276
|
+
"version": "3.13.1",
|
|
277
|
+
"dev": true,
|
|
278
|
+
"license": "(MIT OR CC0-1.0)",
|
|
279
|
+
"engines": {
|
|
280
|
+
"node": ">=14.16"
|
|
281
|
+
},
|
|
282
|
+
"funding": {
|
|
283
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"node_modules/@appium/docutils/node_modules/typedoc": {
|
|
287
|
+
"version": "0.23.28",
|
|
288
|
+
"dev": true,
|
|
289
|
+
"license": "Apache-2.0",
|
|
290
|
+
"dependencies": {
|
|
291
|
+
"lunr": "^2.3.9",
|
|
292
|
+
"marked": "^4.2.12",
|
|
293
|
+
"minimatch": "^7.1.3",
|
|
294
|
+
"shiki": "^0.14.1"
|
|
295
|
+
},
|
|
296
|
+
"bin": {
|
|
297
|
+
"typedoc": "bin/typedoc"
|
|
298
|
+
},
|
|
299
|
+
"engines": {
|
|
300
|
+
"node": ">= 14.14"
|
|
301
|
+
},
|
|
302
|
+
"peerDependencies": {
|
|
303
|
+
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
"node_modules/@appium/docutils/node_modules/typedoc-plugin-markdown": {
|
|
307
|
+
"version": "3.14.0",
|
|
308
|
+
"dev": true,
|
|
309
|
+
"license": "MIT",
|
|
310
|
+
"dependencies": {
|
|
311
|
+
"handlebars": "^4.7.7"
|
|
312
|
+
},
|
|
313
|
+
"peerDependencies": {
|
|
314
|
+
"typedoc": ">=0.23.0"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"node_modules/@appium/docutils/node_modules/typedoc-plugin-resolve-crossmodule-references": {
|
|
318
|
+
"version": "0.3.3",
|
|
319
|
+
"dev": true,
|
|
320
|
+
"license": "Apache-2.0",
|
|
321
|
+
"workspaces": [
|
|
322
|
+
"test/packages/*"
|
|
323
|
+
],
|
|
324
|
+
"engines": {
|
|
325
|
+
"node": ">=14"
|
|
326
|
+
},
|
|
327
|
+
"peerDependencies": {
|
|
328
|
+
"typedoc": ">=0.22 <=0.23"
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"node_modules/@appium/docutils/node_modules/typescript": {
|
|
332
|
+
"version": "5.0.4",
|
|
333
|
+
"dev": true,
|
|
334
|
+
"license": "Apache-2.0",
|
|
335
|
+
"bin": {
|
|
336
|
+
"tsc": "bin/tsc",
|
|
337
|
+
"tsserver": "bin/tsserver"
|
|
338
|
+
},
|
|
339
|
+
"engines": {
|
|
340
|
+
"node": ">=12.20"
|
|
341
|
+
}
|
|
342
|
+
},
|
|
210
343
|
"node_modules/@appium/schema": {
|
|
211
344
|
"version": "0.3.1",
|
|
212
345
|
"license": "Apache-2.0",
|
|
@@ -342,37 +475,25 @@
|
|
|
342
475
|
"npm": ">=8"
|
|
343
476
|
}
|
|
344
477
|
},
|
|
345
|
-
"node_modules/@appium/
|
|
346
|
-
"version": "
|
|
347
|
-
"license": "
|
|
348
|
-
"dependencies": {
|
|
349
|
-
"@tsconfig/node14": "1.0.3"
|
|
350
|
-
},
|
|
478
|
+
"node_modules/@appium/support/node_modules/type-fest": {
|
|
479
|
+
"version": "3.13.1",
|
|
480
|
+
"license": "(MIT OR CC0-1.0)",
|
|
351
481
|
"engines": {
|
|
352
|
-
"node": "
|
|
353
|
-
|
|
482
|
+
"node": ">=14.16"
|
|
483
|
+
},
|
|
484
|
+
"funding": {
|
|
485
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
354
486
|
}
|
|
355
487
|
},
|
|
356
|
-
"node_modules/@appium/
|
|
357
|
-
"version": "0.
|
|
358
|
-
"dev": true,
|
|
488
|
+
"node_modules/@appium/tsconfig": {
|
|
489
|
+
"version": "0.3.1",
|
|
359
490
|
"license": "Apache-2.0",
|
|
360
491
|
"dependencies": {
|
|
361
|
-
"
|
|
362
|
-
"lodash": "4.17.21",
|
|
363
|
-
"pluralize": "8.0.0",
|
|
364
|
-
"type-fest": "3.13.1"
|
|
492
|
+
"@tsconfig/node14": "1.0.3"
|
|
365
493
|
},
|
|
366
494
|
"engines": {
|
|
367
495
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
368
496
|
"npm": ">=8"
|
|
369
|
-
},
|
|
370
|
-
"peerDependencies": {
|
|
371
|
-
"appium": "^2.0.0-beta.48",
|
|
372
|
-
"typedoc": "~0.23.14",
|
|
373
|
-
"typedoc-plugin-markdown": "3.14.0",
|
|
374
|
-
"typedoc-plugin-resolve-crossmodule-references": "~0.3.3",
|
|
375
|
-
"typescript": "^4.7.0 || ^5.0.0"
|
|
376
497
|
}
|
|
377
498
|
},
|
|
378
499
|
"node_modules/@appium/types": {
|
|
@@ -398,6 +519,16 @@
|
|
|
398
519
|
"@types/node": "*"
|
|
399
520
|
}
|
|
400
521
|
},
|
|
522
|
+
"node_modules/@appium/types/node_modules/type-fest": {
|
|
523
|
+
"version": "3.13.1",
|
|
524
|
+
"license": "(MIT OR CC0-1.0)",
|
|
525
|
+
"engines": {
|
|
526
|
+
"node": ">=14.16"
|
|
527
|
+
},
|
|
528
|
+
"funding": {
|
|
529
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
401
532
|
"node_modules/@babel/code-frame": {
|
|
402
533
|
"version": "7.22.13",
|
|
403
534
|
"license": "MIT",
|
|
@@ -1044,7 +1175,7 @@
|
|
|
1044
1175
|
}
|
|
1045
1176
|
},
|
|
1046
1177
|
"node_modules/appium-android-driver": {
|
|
1047
|
-
"version": "7.0
|
|
1178
|
+
"version": "7.1.0",
|
|
1048
1179
|
"license": "Apache-2.0",
|
|
1049
1180
|
"dependencies": {
|
|
1050
1181
|
"appium-adb": "^9.12.0",
|
|
@@ -1057,8 +1188,7 @@
|
|
|
1057
1188
|
"lru-cache": "^10.0.1",
|
|
1058
1189
|
"moment": "^2.24.0",
|
|
1059
1190
|
"moment-timezone": "^0.5.26",
|
|
1060
|
-
"
|
|
1061
|
-
"portscanner": "2.2.0",
|
|
1191
|
+
"portscanner": "^2.2.0",
|
|
1062
1192
|
"semver": "^7.0.0",
|
|
1063
1193
|
"source-map-support": "^0.x",
|
|
1064
1194
|
"teen_process": "^2.0.0",
|
|
@@ -1080,16 +1210,6 @@
|
|
|
1080
1210
|
"node": "14 || >=16.14"
|
|
1081
1211
|
}
|
|
1082
1212
|
},
|
|
1083
|
-
"node_modules/appium-android-driver/node_modules/type-fest": {
|
|
1084
|
-
"version": "4.4.0",
|
|
1085
|
-
"license": "(MIT OR CC0-1.0)",
|
|
1086
|
-
"engines": {
|
|
1087
|
-
"node": ">=16"
|
|
1088
|
-
},
|
|
1089
|
-
"funding": {
|
|
1090
|
-
"url": "https://github.com/sponsors/sindresorhus"
|
|
1091
|
-
}
|
|
1092
|
-
},
|
|
1093
1213
|
"node_modules/appium-chromedriver": {
|
|
1094
1214
|
"version": "5.6.13",
|
|
1095
1215
|
"hasInstallScript": true,
|
|
@@ -3039,7 +3159,7 @@
|
|
|
3039
3159
|
"license": "MIT"
|
|
3040
3160
|
},
|
|
3041
3161
|
"node_modules/node-abi": {
|
|
3042
|
-
"version": "3.
|
|
3162
|
+
"version": "3.51.0",
|
|
3043
3163
|
"license": "MIT",
|
|
3044
3164
|
"optional": true,
|
|
3045
3165
|
"dependencies": {
|
|
@@ -3333,32 +3453,6 @@
|
|
|
3333
3453
|
"node": ">=4"
|
|
3334
3454
|
}
|
|
3335
3455
|
},
|
|
3336
|
-
"node_modules/portfinder": {
|
|
3337
|
-
"version": "1.0.32",
|
|
3338
|
-
"license": "MIT",
|
|
3339
|
-
"dependencies": {
|
|
3340
|
-
"async": "^2.6.4",
|
|
3341
|
-
"debug": "^3.2.7",
|
|
3342
|
-
"mkdirp": "^0.5.6"
|
|
3343
|
-
},
|
|
3344
|
-
"engines": {
|
|
3345
|
-
"node": ">= 0.12.0"
|
|
3346
|
-
}
|
|
3347
|
-
},
|
|
3348
|
-
"node_modules/portfinder/node_modules/async": {
|
|
3349
|
-
"version": "2.6.4",
|
|
3350
|
-
"license": "MIT",
|
|
3351
|
-
"dependencies": {
|
|
3352
|
-
"lodash": "^4.17.14"
|
|
3353
|
-
}
|
|
3354
|
-
},
|
|
3355
|
-
"node_modules/portfinder/node_modules/debug": {
|
|
3356
|
-
"version": "3.2.7",
|
|
3357
|
-
"license": "MIT",
|
|
3358
|
-
"dependencies": {
|
|
3359
|
-
"ms": "^2.1.1"
|
|
3360
|
-
}
|
|
3361
|
-
},
|
|
3362
3456
|
"node_modules/portscanner": {
|
|
3363
3457
|
"version": "2.2.0",
|
|
3364
3458
|
"license": "MIT",
|
|
@@ -4185,10 +4279,10 @@
|
|
|
4185
4279
|
}
|
|
4186
4280
|
},
|
|
4187
4281
|
"node_modules/type-fest": {
|
|
4188
|
-
"version": "
|
|
4282
|
+
"version": "4.4.0",
|
|
4189
4283
|
"license": "(MIT OR CC0-1.0)",
|
|
4190
4284
|
"engines": {
|
|
4191
|
-
"node": ">=
|
|
4285
|
+
"node": ">=16"
|
|
4192
4286
|
},
|
|
4193
4287
|
"funding": {
|
|
4194
4288
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
@@ -4205,86 +4299,8 @@
|
|
|
4205
4299
|
"node": ">= 0.6"
|
|
4206
4300
|
}
|
|
4207
4301
|
},
|
|
4208
|
-
"node_modules/typedoc": {
|
|
4209
|
-
"version": "0.23.28",
|
|
4210
|
-
"dev": true,
|
|
4211
|
-
"license": "Apache-2.0",
|
|
4212
|
-
"dependencies": {
|
|
4213
|
-
"lunr": "^2.3.9",
|
|
4214
|
-
"marked": "^4.2.12",
|
|
4215
|
-
"minimatch": "^7.1.3",
|
|
4216
|
-
"shiki": "^0.14.1"
|
|
4217
|
-
},
|
|
4218
|
-
"bin": {
|
|
4219
|
-
"typedoc": "bin/typedoc"
|
|
4220
|
-
},
|
|
4221
|
-
"engines": {
|
|
4222
|
-
"node": ">= 14.14"
|
|
4223
|
-
},
|
|
4224
|
-
"peerDependencies": {
|
|
4225
|
-
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x"
|
|
4226
|
-
}
|
|
4227
|
-
},
|
|
4228
|
-
"node_modules/typedoc-plugin-markdown": {
|
|
4229
|
-
"version": "3.14.0",
|
|
4230
|
-
"dev": true,
|
|
4231
|
-
"license": "MIT",
|
|
4232
|
-
"dependencies": {
|
|
4233
|
-
"handlebars": "^4.7.7"
|
|
4234
|
-
},
|
|
4235
|
-
"peerDependencies": {
|
|
4236
|
-
"typedoc": ">=0.23.0"
|
|
4237
|
-
}
|
|
4238
|
-
},
|
|
4239
|
-
"node_modules/typedoc-plugin-resolve-crossmodule-references": {
|
|
4240
|
-
"version": "0.3.3",
|
|
4241
|
-
"dev": true,
|
|
4242
|
-
"license": "Apache-2.0",
|
|
4243
|
-
"workspaces": [
|
|
4244
|
-
"test/packages/*"
|
|
4245
|
-
],
|
|
4246
|
-
"engines": {
|
|
4247
|
-
"node": ">=14"
|
|
4248
|
-
},
|
|
4249
|
-
"peerDependencies": {
|
|
4250
|
-
"typedoc": ">=0.22 <=0.23"
|
|
4251
|
-
}
|
|
4252
|
-
},
|
|
4253
|
-
"node_modules/typedoc/node_modules/brace-expansion": {
|
|
4254
|
-
"version": "2.0.1",
|
|
4255
|
-
"dev": true,
|
|
4256
|
-
"license": "MIT",
|
|
4257
|
-
"dependencies": {
|
|
4258
|
-
"balanced-match": "^1.0.0"
|
|
4259
|
-
}
|
|
4260
|
-
},
|
|
4261
|
-
"node_modules/typedoc/node_modules/marked": {
|
|
4262
|
-
"version": "4.3.0",
|
|
4263
|
-
"dev": true,
|
|
4264
|
-
"license": "MIT",
|
|
4265
|
-
"bin": {
|
|
4266
|
-
"marked": "bin/marked.js"
|
|
4267
|
-
},
|
|
4268
|
-
"engines": {
|
|
4269
|
-
"node": ">= 12"
|
|
4270
|
-
}
|
|
4271
|
-
},
|
|
4272
|
-
"node_modules/typedoc/node_modules/minimatch": {
|
|
4273
|
-
"version": "7.4.6",
|
|
4274
|
-
"dev": true,
|
|
4275
|
-
"license": "ISC",
|
|
4276
|
-
"dependencies": {
|
|
4277
|
-
"brace-expansion": "^2.0.1"
|
|
4278
|
-
},
|
|
4279
|
-
"engines": {
|
|
4280
|
-
"node": ">=10"
|
|
4281
|
-
},
|
|
4282
|
-
"funding": {
|
|
4283
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
4284
|
-
}
|
|
4285
|
-
},
|
|
4286
4302
|
"node_modules/typescript": {
|
|
4287
|
-
"version": "5.
|
|
4303
|
+
"version": "5.2.2",
|
|
4288
4304
|
"dev": true,
|
|
4289
4305
|
"license": "Apache-2.0",
|
|
4290
4306
|
"bin": {
|
|
@@ -4292,7 +4308,7 @@
|
|
|
4292
4308
|
"tsserver": "bin/tsserver"
|
|
4293
4309
|
},
|
|
4294
4310
|
"engines": {
|
|
4295
|
-
"node": ">=
|
|
4311
|
+
"node": ">=14.17"
|
|
4296
4312
|
}
|
|
4297
4313
|
},
|
|
4298
4314
|
"node_modules/uglify-js": {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.32.0",
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/appium/appium-uiautomator2-driver/issues"
|
|
13
13
|
},
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"appium-adb": "^9.14.12",
|
|
66
|
-
"appium-android-driver": "^7.0
|
|
66
|
+
"appium-android-driver": "^7.1.0",
|
|
67
67
|
"appium-chromedriver": "^5.6.5",
|
|
68
68
|
"appium-uiautomator2-server": "^5.12.2",
|
|
69
69
|
"asyncbox": "^2.3.1",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"portscanner": "^2.2.0",
|
|
75
75
|
"source-map-support": "^0.x",
|
|
76
76
|
"teen_process": "^2.0.0",
|
|
77
|
-
"type-fest": "^
|
|
77
|
+
"type-fest": "^4.4.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@appium/docutils": "^0.4.4",
|
|
@@ -117,16 +117,16 @@
|
|
|
117
117
|
"eslint-plugin-promise": "^6.1.1",
|
|
118
118
|
"fancy-log": "^2.0.0",
|
|
119
119
|
"husky": "^8.0.3",
|
|
120
|
-
"lint-staged": "^
|
|
120
|
+
"lint-staged": "^15.0.1",
|
|
121
121
|
"mocha": "^10.0.0",
|
|
122
|
-
"prettier": "^
|
|
122
|
+
"prettier": "^3.0.3",
|
|
123
123
|
"rimraf": "^5.0.0",
|
|
124
|
-
"semantic-release": "^
|
|
124
|
+
"semantic-release": "^22.0.5",
|
|
125
125
|
"sharp": "^0.x",
|
|
126
126
|
"sinon": "^16.1.0",
|
|
127
127
|
"sinon-chai": "^3.7.0",
|
|
128
128
|
"ts-node": "^10.9.1",
|
|
129
|
-
"typescript": "~5.
|
|
129
|
+
"typescript": "~5.2",
|
|
130
130
|
"unzipper": "^0.x",
|
|
131
131
|
"webdriverio": "^8.0.5",
|
|
132
132
|
"xpath": "^0.x"
|