appium-uiautomator2-driver 2.41.0 → 2.42.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/CHANGELOG.md +14 -0
- package/build/lib/commands/general.js +2 -2
- package/build/lib/commands/general.js.map +1 -1
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js +5 -4
- package/build/lib/driver.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/lib/commands/general.js +2 -2
- package/lib/driver.ts +6 -5
- package/npm-shrinkwrap.json +160 -67
- package/package.json +6 -5
package/lib/commands/general.js
CHANGED
|
@@ -71,7 +71,7 @@ const GeneralMixin = {
|
|
|
71
71
|
'POST',
|
|
72
72
|
{}
|
|
73
73
|
)
|
|
74
|
-
: await this.
|
|
74
|
+
: await this.settingsApp.getClipboard()
|
|
75
75
|
);
|
|
76
76
|
},
|
|
77
77
|
|
|
@@ -248,7 +248,7 @@ const GeneralMixin = {
|
|
|
248
248
|
this.log.errorAndThrow(`The 'text' argument is mandatory`);
|
|
249
249
|
throw new Error(); // unreachable
|
|
250
250
|
}
|
|
251
|
-
return await this.
|
|
251
|
+
return await this.settingsApp.typeUnicode(String(text));
|
|
252
252
|
},
|
|
253
253
|
|
|
254
254
|
/**
|
package/lib/driver.ts
CHANGED
|
@@ -10,7 +10,8 @@ import type {
|
|
|
10
10
|
StringRecord,
|
|
11
11
|
} from '@appium/types';
|
|
12
12
|
import {DEFAULT_ADB_PORT} from 'appium-adb';
|
|
13
|
-
import AndroidDriver, {
|
|
13
|
+
import AndroidDriver, {androidHelpers} from 'appium-android-driver';
|
|
14
|
+
import {SETTINGS_HELPER_ID} from 'io.appium.settings';
|
|
14
15
|
import {BaseDriver, DeviceSettings} from 'appium/driver';
|
|
15
16
|
import {fs, mjpeg, util} from 'appium/support';
|
|
16
17
|
import {retryInterval} from 'asyncbox';
|
|
@@ -509,7 +510,7 @@ class AndroidUiautomator2Driver
|
|
|
509
510
|
// `--no-window-animation` works over Android 8 to disable all of animations
|
|
510
511
|
if (await this.adb.isAnimationOn()) {
|
|
511
512
|
this.log.info('Disabling animation via io.appium.settings');
|
|
512
|
-
await this.
|
|
513
|
+
await this.settingsApp.setAnimationState(false);
|
|
513
514
|
this._wasWindowAnimationDisabled = true;
|
|
514
515
|
} else {
|
|
515
516
|
this.log.info('Window animation is already disabled');
|
|
@@ -603,7 +604,7 @@ class AndroidUiautomator2Driver
|
|
|
603
604
|
await this.uiautomator2.installServerApk(this.opts.uiautomator2ServerInstallTimeout);
|
|
604
605
|
try {
|
|
605
606
|
await this.adb!.addToDeviceIdleWhitelist(
|
|
606
|
-
|
|
607
|
+
SETTINGS_HELPER_ID,
|
|
607
608
|
SERVER_PACKAGE_ID,
|
|
608
609
|
SERVER_TEST_PACKAGE_ID
|
|
609
610
|
);
|
|
@@ -625,7 +626,7 @@ class AndroidUiautomator2Driver
|
|
|
625
626
|
await helpers.uninstallOtherPackages(
|
|
626
627
|
this.adb!,
|
|
627
628
|
helpers.parseArray(this.opts.uninstallOtherPackages),
|
|
628
|
-
[
|
|
629
|
+
[SETTINGS_HELPER_ID, SERVER_PACKAGE_ID, SERVER_TEST_PACKAGE_ID]
|
|
629
630
|
);
|
|
630
631
|
}
|
|
631
632
|
|
|
@@ -791,7 +792,7 @@ class AndroidUiautomator2Driver
|
|
|
791
792
|
// This value can be true if test target device is <= 26
|
|
792
793
|
if (this._wasWindowAnimationDisabled) {
|
|
793
794
|
this.log.info('Restoring window animation state');
|
|
794
|
-
await this.
|
|
795
|
+
await this.settingsApp.setAnimationState(true);
|
|
795
796
|
}
|
|
796
797
|
if (this._originalIme) {
|
|
797
798
|
try {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.42.1",
|
|
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.42.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"appium-adb": "^
|
|
13
|
-
"appium-android-driver": "^7.
|
|
14
|
-
"appium-chromedriver": "^5.6.
|
|
12
|
+
"appium-adb": "^12.0.0",
|
|
13
|
+
"appium-android-driver": "^7.8.1",
|
|
14
|
+
"appium-chromedriver": "^5.6.28",
|
|
15
15
|
"appium-uiautomator2-server": "^6.0.3",
|
|
16
16
|
"asyncbox": "^3.0.0",
|
|
17
|
-
"axios": "^1.
|
|
17
|
+
"axios": "^1.6.5",
|
|
18
18
|
"bluebird": "^3.5.1",
|
|
19
19
|
"css-selector-parser": "^3.0.0",
|
|
20
|
+
"io.appium.settings": "^5.7.2",
|
|
20
21
|
"lodash": "^4.17.4",
|
|
21
22
|
"portscanner": "^2.2.0",
|
|
22
23
|
"source-map-support": "^0.x",
|
|
@@ -266,6 +267,98 @@
|
|
|
266
267
|
"sharp": "0.33.1"
|
|
267
268
|
}
|
|
268
269
|
},
|
|
270
|
+
"node_modules/@appium/support/node_modules/@img/sharp-libvips-linux-x64": {
|
|
271
|
+
"version": "1.0.0",
|
|
272
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.0.tgz",
|
|
273
|
+
"integrity": "sha512-naldaJy4hSVhWBgEjfdBY85CAa4UO+W1nx6a1sWStHZ7EUfNiuBTTN2KUYT5dH1+p/xij1t2QSXfCiFJoC5S/Q==",
|
|
274
|
+
"cpu": [
|
|
275
|
+
"x64"
|
|
276
|
+
],
|
|
277
|
+
"optional": true,
|
|
278
|
+
"os": [
|
|
279
|
+
"linux"
|
|
280
|
+
],
|
|
281
|
+
"engines": {
|
|
282
|
+
"glibc": ">=2.26",
|
|
283
|
+
"npm": ">=9.6.5",
|
|
284
|
+
"pnpm": ">=7.1.0",
|
|
285
|
+
"yarn": ">=3.2.0"
|
|
286
|
+
},
|
|
287
|
+
"funding": {
|
|
288
|
+
"url": "https://opencollective.com/libvips"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"node_modules/@appium/support/node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
|
292
|
+
"version": "1.0.0",
|
|
293
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.0.tgz",
|
|
294
|
+
"integrity": "sha512-FW8iK6rJrg+X2jKD0Ajhjv6y74lToIBEvkZhl42nZt563FfxkCYacrXZtd+q/sRQDypQLzY5WdLkVTbJoPyqNg==",
|
|
295
|
+
"cpu": [
|
|
296
|
+
"x64"
|
|
297
|
+
],
|
|
298
|
+
"optional": true,
|
|
299
|
+
"os": [
|
|
300
|
+
"linux"
|
|
301
|
+
],
|
|
302
|
+
"engines": {
|
|
303
|
+
"musl": ">=1.2.2",
|
|
304
|
+
"npm": ">=9.6.5",
|
|
305
|
+
"pnpm": ">=7.1.0",
|
|
306
|
+
"yarn": ">=3.2.0"
|
|
307
|
+
},
|
|
308
|
+
"funding": {
|
|
309
|
+
"url": "https://opencollective.com/libvips"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
"node_modules/@appium/support/node_modules/@img/sharp-linux-x64": {
|
|
313
|
+
"version": "0.33.1",
|
|
314
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.1.tgz",
|
|
315
|
+
"integrity": "sha512-4y8osC0cAc1TRpy02yn5omBeloZZwS62fPZ0WUAYQiLhSFSpWJfY/gMrzKzLcHB9ulUV6ExFiu2elMaixKDbeg==",
|
|
316
|
+
"cpu": [
|
|
317
|
+
"x64"
|
|
318
|
+
],
|
|
319
|
+
"optional": true,
|
|
320
|
+
"os": [
|
|
321
|
+
"linux"
|
|
322
|
+
],
|
|
323
|
+
"engines": {
|
|
324
|
+
"glibc": ">=2.26",
|
|
325
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
|
326
|
+
"npm": ">=9.6.5",
|
|
327
|
+
"pnpm": ">=7.1.0",
|
|
328
|
+
"yarn": ">=3.2.0"
|
|
329
|
+
},
|
|
330
|
+
"funding": {
|
|
331
|
+
"url": "https://opencollective.com/libvips"
|
|
332
|
+
},
|
|
333
|
+
"optionalDependencies": {
|
|
334
|
+
"@img/sharp-libvips-linux-x64": "1.0.0"
|
|
335
|
+
}
|
|
336
|
+
},
|
|
337
|
+
"node_modules/@appium/support/node_modules/@img/sharp-linuxmusl-x64": {
|
|
338
|
+
"version": "0.33.1",
|
|
339
|
+
"resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.1.tgz",
|
|
340
|
+
"integrity": "sha512-LOGKNu5w8uu1evVqUAUKTix2sQu1XDRIYbsi5Q0c/SrXhvJ4QyOx+GaajxmOg5PZSsSnCYPSmhjHHsRBx06/wQ==",
|
|
341
|
+
"cpu": [
|
|
342
|
+
"x64"
|
|
343
|
+
],
|
|
344
|
+
"optional": true,
|
|
345
|
+
"os": [
|
|
346
|
+
"linux"
|
|
347
|
+
],
|
|
348
|
+
"engines": {
|
|
349
|
+
"musl": ">=1.2.2",
|
|
350
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
|
351
|
+
"npm": ">=9.6.5",
|
|
352
|
+
"pnpm": ">=7.1.0",
|
|
353
|
+
"yarn": ">=3.2.0"
|
|
354
|
+
},
|
|
355
|
+
"funding": {
|
|
356
|
+
"url": "https://opencollective.com/libvips"
|
|
357
|
+
},
|
|
358
|
+
"optionalDependencies": {
|
|
359
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.0"
|
|
360
|
+
}
|
|
361
|
+
},
|
|
269
362
|
"node_modules/@appium/support/node_modules/axios": {
|
|
270
363
|
"version": "1.6.3",
|
|
271
364
|
"resolved": "https://registry.npmjs.org/axios/-/axios-1.6.3.tgz",
|
|
@@ -276,6 +369,46 @@
|
|
|
276
369
|
"proxy-from-env": "^1.1.0"
|
|
277
370
|
}
|
|
278
371
|
},
|
|
372
|
+
"node_modules/@appium/support/node_modules/sharp": {
|
|
373
|
+
"version": "0.33.1",
|
|
374
|
+
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.1.tgz",
|
|
375
|
+
"integrity": "sha512-iAYUnOdTqqZDb3QjMneBKINTllCJDZ3em6WaWy7NPECM4aHncvqHRm0v0bN9nqJxMiwamv5KIdauJ6lUzKDpTQ==",
|
|
376
|
+
"hasInstallScript": true,
|
|
377
|
+
"optional": true,
|
|
378
|
+
"dependencies": {
|
|
379
|
+
"color": "^4.2.3",
|
|
380
|
+
"detect-libc": "^2.0.2",
|
|
381
|
+
"semver": "^7.5.4"
|
|
382
|
+
},
|
|
383
|
+
"engines": {
|
|
384
|
+
"libvips": ">=8.15.0",
|
|
385
|
+
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
386
|
+
},
|
|
387
|
+
"funding": {
|
|
388
|
+
"url": "https://opencollective.com/libvips"
|
|
389
|
+
},
|
|
390
|
+
"optionalDependencies": {
|
|
391
|
+
"@img/sharp-darwin-arm64": "0.33.1",
|
|
392
|
+
"@img/sharp-darwin-x64": "0.33.1",
|
|
393
|
+
"@img/sharp-libvips-darwin-arm64": "1.0.0",
|
|
394
|
+
"@img/sharp-libvips-darwin-x64": "1.0.0",
|
|
395
|
+
"@img/sharp-libvips-linux-arm": "1.0.0",
|
|
396
|
+
"@img/sharp-libvips-linux-arm64": "1.0.0",
|
|
397
|
+
"@img/sharp-libvips-linux-s390x": "1.0.0",
|
|
398
|
+
"@img/sharp-libvips-linux-x64": "1.0.0",
|
|
399
|
+
"@img/sharp-libvips-linuxmusl-arm64": "1.0.0",
|
|
400
|
+
"@img/sharp-libvips-linuxmusl-x64": "1.0.0",
|
|
401
|
+
"@img/sharp-linux-arm": "0.33.1",
|
|
402
|
+
"@img/sharp-linux-arm64": "0.33.1",
|
|
403
|
+
"@img/sharp-linux-s390x": "0.33.1",
|
|
404
|
+
"@img/sharp-linux-x64": "0.33.1",
|
|
405
|
+
"@img/sharp-linuxmusl-arm64": "0.33.1",
|
|
406
|
+
"@img/sharp-linuxmusl-x64": "0.33.1",
|
|
407
|
+
"@img/sharp-wasm32": "0.33.1",
|
|
408
|
+
"@img/sharp-win32-ia32": "0.33.1",
|
|
409
|
+
"@img/sharp-win32-x64": "0.33.1"
|
|
410
|
+
}
|
|
411
|
+
},
|
|
279
412
|
"node_modules/@appium/tsconfig": {
|
|
280
413
|
"version": "0.3.2",
|
|
281
414
|
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.2.tgz",
|
|
@@ -1032,9 +1165,9 @@
|
|
|
1032
1165
|
}
|
|
1033
1166
|
},
|
|
1034
1167
|
"node_modules/appium-adb": {
|
|
1035
|
-
"version": "
|
|
1036
|
-
"resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-
|
|
1037
|
-
"integrity": "sha512-
|
|
1168
|
+
"version": "12.0.0",
|
|
1169
|
+
"resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-12.0.0.tgz",
|
|
1170
|
+
"integrity": "sha512-JXKYOHaB5uXeq/n6q4SI61pm6+PJBv0q+Hy5rka0xfcWnfqZ+kp4LOGpMFEK1tlsSi03J1fwmKFUi/q0srysXQ==",
|
|
1038
1171
|
"dependencies": {
|
|
1039
1172
|
"@appium/support": "^4.0.0",
|
|
1040
1173
|
"@devicefarmer/adbkit-apkreader": "^3.2.4",
|
|
@@ -1054,18 +1187,18 @@
|
|
|
1054
1187
|
}
|
|
1055
1188
|
},
|
|
1056
1189
|
"node_modules/appium-android-driver": {
|
|
1057
|
-
"version": "7.
|
|
1058
|
-
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-7.
|
|
1059
|
-
"integrity": "sha512-
|
|
1190
|
+
"version": "7.8.1",
|
|
1191
|
+
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-7.8.1.tgz",
|
|
1192
|
+
"integrity": "sha512-D8YSYRC1LcDZPSMj2meEBfeJTpS2bwAbrMbrpFhjTGYbmmMAbJgLzLpKu7kanhoQIhTtKaySQuEuebKPKQ201w==",
|
|
1060
1193
|
"dependencies": {
|
|
1061
1194
|
"@appium/support": "^4.2.0",
|
|
1062
1195
|
"@colors/colors": "^1.6.0",
|
|
1063
|
-
"appium-adb": "^
|
|
1196
|
+
"appium-adb": "^12.0.0",
|
|
1064
1197
|
"appium-chromedriver": "^5.5.1",
|
|
1065
1198
|
"asyncbox": "^3.0.0",
|
|
1066
1199
|
"axios": "^1.x",
|
|
1067
1200
|
"bluebird": "^3.4.7",
|
|
1068
|
-
"io.appium.settings": "^5.
|
|
1201
|
+
"io.appium.settings": "^5.7.1",
|
|
1069
1202
|
"lodash": "^4.17.4",
|
|
1070
1203
|
"lru-cache": "^10.0.1",
|
|
1071
1204
|
"moment": "^2.24.0",
|
|
@@ -1086,17 +1219,17 @@
|
|
|
1086
1219
|
}
|
|
1087
1220
|
},
|
|
1088
1221
|
"node_modules/appium-chromedriver": {
|
|
1089
|
-
"version": "5.6.
|
|
1090
|
-
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-5.6.
|
|
1091
|
-
"integrity": "sha512-
|
|
1222
|
+
"version": "5.6.28",
|
|
1223
|
+
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-5.6.28.tgz",
|
|
1224
|
+
"integrity": "sha512-aFZ5R8aVL9iHAgg4oJ+01xeqnH+nYMM5tXlt3iwxtwwJ5NXyblkZNvejbmh1WdzJZUrd/T6klw1gUXFrolxLbA==",
|
|
1092
1225
|
"hasInstallScript": true,
|
|
1093
1226
|
"dependencies": {
|
|
1094
1227
|
"@appium/base-driver": "^9.1.0",
|
|
1095
1228
|
"@appium/support": "^4.0.0",
|
|
1096
1229
|
"@xmldom/xmldom": "^0.x",
|
|
1097
|
-
"appium-adb": "^
|
|
1230
|
+
"appium-adb": "^12.0.0",
|
|
1098
1231
|
"asyncbox": "^3.0.0",
|
|
1099
|
-
"axios": "^1.
|
|
1232
|
+
"axios": "^1.6.5",
|
|
1100
1233
|
"bluebird": "^3.5.1",
|
|
1101
1234
|
"compare-versions": "^6.0.0",
|
|
1102
1235
|
"fancy-log": "^2.0.0",
|
|
@@ -1539,7 +1672,7 @@
|
|
|
1539
1672
|
"version": "4.2.3",
|
|
1540
1673
|
"resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
|
|
1541
1674
|
"integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
|
1542
|
-
"
|
|
1675
|
+
"optional": true,
|
|
1543
1676
|
"dependencies": {
|
|
1544
1677
|
"color-convert": "^2.0.1",
|
|
1545
1678
|
"color-string": "^1.9.0"
|
|
@@ -1855,7 +1988,7 @@
|
|
|
1855
1988
|
"version": "2.0.2",
|
|
1856
1989
|
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz",
|
|
1857
1990
|
"integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==",
|
|
1858
|
-
"
|
|
1991
|
+
"optional": true,
|
|
1859
1992
|
"engines": {
|
|
1860
1993
|
"node": ">=8"
|
|
1861
1994
|
}
|
|
@@ -2144,9 +2277,9 @@
|
|
|
2144
2277
|
"integrity": "sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="
|
|
2145
2278
|
},
|
|
2146
2279
|
"node_modules/follow-redirects": {
|
|
2147
|
-
"version": "1.15.
|
|
2148
|
-
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.
|
|
2149
|
-
"integrity": "sha512-
|
|
2280
|
+
"version": "1.15.5",
|
|
2281
|
+
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.5.tgz",
|
|
2282
|
+
"integrity": "sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==",
|
|
2150
2283
|
"funding": [
|
|
2151
2284
|
{
|
|
2152
2285
|
"type": "individual",
|
|
@@ -2582,9 +2715,9 @@
|
|
|
2582
2715
|
}
|
|
2583
2716
|
},
|
|
2584
2717
|
"node_modules/io.appium.settings": {
|
|
2585
|
-
"version": "5.
|
|
2586
|
-
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.
|
|
2587
|
-
"integrity": "sha512-
|
|
2718
|
+
"version": "5.7.2",
|
|
2719
|
+
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.7.2.tgz",
|
|
2720
|
+
"integrity": "sha512-iK5e2t0+4S5jFUcbSp+gs+yFJGI8zLL7VQc1KOUo5S5XtebZ4NTsvIdL1QyDRdMgbGAPORnPbyQzbefFPX5/ug==",
|
|
2588
2721
|
"dependencies": {
|
|
2589
2722
|
"asyncbox": "^3.0.0",
|
|
2590
2723
|
"bluebird": "^3.5.1",
|
|
@@ -3843,46 +3976,6 @@
|
|
|
3843
3976
|
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
|
3844
3977
|
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
|
|
3845
3978
|
},
|
|
3846
|
-
"node_modules/sharp": {
|
|
3847
|
-
"version": "0.33.1",
|
|
3848
|
-
"resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.1.tgz",
|
|
3849
|
-
"integrity": "sha512-iAYUnOdTqqZDb3QjMneBKINTllCJDZ3em6WaWy7NPECM4aHncvqHRm0v0bN9nqJxMiwamv5KIdauJ6lUzKDpTQ==",
|
|
3850
|
-
"devOptional": true,
|
|
3851
|
-
"hasInstallScript": true,
|
|
3852
|
-
"dependencies": {
|
|
3853
|
-
"color": "^4.2.3",
|
|
3854
|
-
"detect-libc": "^2.0.2",
|
|
3855
|
-
"semver": "^7.5.4"
|
|
3856
|
-
},
|
|
3857
|
-
"engines": {
|
|
3858
|
-
"libvips": ">=8.15.0",
|
|
3859
|
-
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
|
3860
|
-
},
|
|
3861
|
-
"funding": {
|
|
3862
|
-
"url": "https://opencollective.com/libvips"
|
|
3863
|
-
},
|
|
3864
|
-
"optionalDependencies": {
|
|
3865
|
-
"@img/sharp-darwin-arm64": "0.33.1",
|
|
3866
|
-
"@img/sharp-darwin-x64": "0.33.1",
|
|
3867
|
-
"@img/sharp-libvips-darwin-arm64": "1.0.0",
|
|
3868
|
-
"@img/sharp-libvips-darwin-x64": "1.0.0",
|
|
3869
|
-
"@img/sharp-libvips-linux-arm": "1.0.0",
|
|
3870
|
-
"@img/sharp-libvips-linux-arm64": "1.0.0",
|
|
3871
|
-
"@img/sharp-libvips-linux-s390x": "1.0.0",
|
|
3872
|
-
"@img/sharp-libvips-linux-x64": "1.0.0",
|
|
3873
|
-
"@img/sharp-libvips-linuxmusl-arm64": "1.0.0",
|
|
3874
|
-
"@img/sharp-libvips-linuxmusl-x64": "1.0.0",
|
|
3875
|
-
"@img/sharp-linux-arm": "0.33.1",
|
|
3876
|
-
"@img/sharp-linux-arm64": "0.33.1",
|
|
3877
|
-
"@img/sharp-linux-s390x": "0.33.1",
|
|
3878
|
-
"@img/sharp-linux-x64": "0.33.1",
|
|
3879
|
-
"@img/sharp-linuxmusl-arm64": "0.33.1",
|
|
3880
|
-
"@img/sharp-linuxmusl-x64": "0.33.1",
|
|
3881
|
-
"@img/sharp-wasm32": "0.33.1",
|
|
3882
|
-
"@img/sharp-win32-ia32": "0.33.1",
|
|
3883
|
-
"@img/sharp-win32-x64": "0.33.1"
|
|
3884
|
-
}
|
|
3885
|
-
},
|
|
3886
3979
|
"node_modules/shebang-command": {
|
|
3887
3980
|
"version": "2.0.0",
|
|
3888
3981
|
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.42.1",
|
|
11
11
|
"bugs": {
|
|
12
12
|
"url": "https://github.com/appium/appium-uiautomator2-driver/issues"
|
|
13
13
|
},
|
|
@@ -62,14 +62,15 @@
|
|
|
62
62
|
"singleQuote": true
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"appium-adb": "^
|
|
66
|
-
"appium-android-driver": "^7.
|
|
67
|
-
"appium-chromedriver": "^5.6.
|
|
65
|
+
"appium-adb": "^12.0.0",
|
|
66
|
+
"appium-android-driver": "^7.8.1",
|
|
67
|
+
"appium-chromedriver": "^5.6.28",
|
|
68
68
|
"appium-uiautomator2-server": "^6.0.3",
|
|
69
69
|
"asyncbox": "^3.0.0",
|
|
70
|
-
"axios": "^1.
|
|
70
|
+
"axios": "^1.6.5",
|
|
71
71
|
"bluebird": "^3.5.1",
|
|
72
72
|
"css-selector-parser": "^3.0.0",
|
|
73
|
+
"io.appium.settings": "^5.7.2",
|
|
73
74
|
"lodash": "^4.17.4",
|
|
74
75
|
"portscanner": "^2.2.0",
|
|
75
76
|
"source-map-support": "^0.x",
|