appium-espresso-driver 4.0.5 → 4.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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [4.1.1](https://github.com/appium/appium-espresso-driver/compare/v4.1.0...v4.1.1) (2025-03-10)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* bump io.appium.settings ([#1054](https://github.com/appium/appium-espresso-driver/issues/1054)) ([769d392](https://github.com/appium/appium-espresso-driver/commit/769d39201eedd5297c189b1cf1d641ed06cf050e))
|
|
6
|
+
|
|
7
|
+
## [4.1.0](https://github.com/appium/appium-espresso-driver/compare/v4.0.5...v4.1.0) (2025-02-27)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add more params in mobile: setGeolocation ([#1052](https://github.com/appium/appium-espresso-driver/issues/1052)) ([7c9a1a1](https://github.com/appium/appium-espresso-driver/commit/7c9a1a17bc5c63ff1c30b9e5f08d2d30b7d7a374))
|
|
12
|
+
|
|
1
13
|
## [4.0.5](https://github.com/appium/appium-espresso-driver/compare/v4.0.4...v4.0.5) (2025-02-21)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -131,7 +131,7 @@ appium:buildToolsVersion | The version of Android build tools to use. By default
|
|
|
131
131
|
appium:skipLogcatCapture | Being set to `true` disables automatic logcat output collection during the test run. `false` by default
|
|
132
132
|
appium:suppressKillServer | Being set to `true` prevents the driver from ever killing the ADB server explicitly. Could be useful if ADB is connected wirelessly. `false` by default
|
|
133
133
|
appium:ignoreHiddenApiPolicyError | Being set to `true` ignores a failure while changing hidden API access policies to [enable access to non-SDK interfaces](https://developer.android.com/guide/app-compatibility/restrictions-non-sdk-interfaces#how_can_i_enable_access_to_non-sdk_interfaces). Could be useful on some devices, where access to these policies has been locked by its vendor. `false` by default.
|
|
134
|
-
|
|
134
|
+
appium:hideKeyboard | Being set to `true` hides the on-screen keyboard while the session is running. Use it instead of the legacy `appium:unicodeKeyboard` one (which will be dropped in the future). This effect is achieved by assigning a custom "artificial" [input method](https://developer.android.com/develop/ui/views/touch-and-input/creating-input-method). Only use this feature for special/exploratory cases as it violates the way your application under test is normally interacted with by a human. Setting this capability explicitly to `false` enforces `adb shell ime reset` call on session startup, which resets the currently selected/enabled IMEs to the default ones as if the device is initially booted with the current locale. `undefined` by default.
|
|
135
135
|
appium:mockLocationApp | Sets the package identifier of the app, which is used as a system mock location provider since Appium 1.18.0+. This capability has no effect on emulators. If the value is set to `null` or an empty string, then Appium will skip the mocked location provider setup procedure. Defaults to Appium Setting package identifier (`io.appium.settings`).
|
|
136
136
|
appium:logcatFormat | The log print format, where `format` is one of: `brief` `process` `tag` `thread` `raw` `time` `threadtime` `long`. `threadtime` is the default value.
|
|
137
137
|
appium:logcatFilterSpecs | Series of `tag[:priority]` where `tag` is a log component tag (or * for all) and priority is: `V Verbose`, `D Debug`, `I Info`, `W Warn`, `E Error`, `F Fatal`, `S Silent (supress all output)`. '*' means '*:d' and `tag` by itself means `tag:v`. If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS. If no filterspec is found, filter defaults to '*:I'.
|
|
@@ -839,6 +839,10 @@ Name | Type | Required | Description | Example
|
|
|
839
839
|
latitude | number | yes | [Latitude](https://en.wikipedia.org/wiki/Latitude) value | 32.456
|
|
840
840
|
longitude | number | yes | [longitude](https://en.wikipedia.org/wiki/Longitude) value | 32.456
|
|
841
841
|
altitude | number | no | [Altitude](https://en.wikipedia.org/wiki/Altitude) value. Zero by default | 5.678
|
|
842
|
+
satellites | number | no | Number of satellites being tracked (1-12). Available for emulators. | 2
|
|
843
|
+
speed | number | no | [Set the speed](https://developer.android.com/reference/android/location/Location#setSpeed(float)) in meters per second. Valid value is `0.0` or greater. | 30.0
|
|
844
|
+
bearing | number | no | [Set the bearing](https://developer.android.com/reference/android/location/Location#setBearing(float)) at the time of this location, in degrees. Available for real devices. Valid values should be in range `[0, 360)`. | 10
|
|
845
|
+
accuracy | number | no | [Set the horizontal accuracy](https://developer.android.com/reference/android/location/Location#setAccuracy(float)) in meters of this location. Available for real devices. Valid value is `0.0` or greater. | 10.0
|
|
842
846
|
|
|
843
847
|
### mobile: getGeolocation
|
|
844
848
|
|
package/build/lib/driver.d.ts
CHANGED
|
@@ -809,7 +809,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
809
809
|
readonly command: "mobileSetGeolocation";
|
|
810
810
|
readonly params: {
|
|
811
811
|
readonly required: readonly ["latitude", "longitude"];
|
|
812
|
-
readonly optional: readonly ["altitude"];
|
|
812
|
+
readonly optional: readonly ["altitude", "satellites", "speed", "bearing", "accuracy"];
|
|
813
813
|
};
|
|
814
814
|
};
|
|
815
815
|
readonly 'mobile: getGeolocation': {
|
|
@@ -484,7 +484,7 @@ export declare const executeMethodMap: {
|
|
|
484
484
|
readonly command: "mobileSetGeolocation";
|
|
485
485
|
readonly params: {
|
|
486
486
|
readonly required: readonly ["latitude", "longitude"];
|
|
487
|
-
readonly optional: readonly ["altitude"];
|
|
487
|
+
readonly optional: readonly ["altitude", "satellites", "speed", "bearing", "accuracy"];
|
|
488
488
|
};
|
|
489
489
|
};
|
|
490
490
|
readonly 'mobile: getGeolocation': {
|
package/espresso-server/library/src/main/java/io/appium/espressoserver/lib/helpers/Version.kt
CHANGED
|
@@ -2,6 +2,6 @@ package io.appium.espressoserver.lib.helpers
|
|
|
2
2
|
|
|
3
3
|
// This value is updated automatically by the NPM versioning script
|
|
4
4
|
// It should be in sync with the NPM module version from package.json
|
|
5
|
-
private const val VERSION = "4.
|
|
5
|
+
private const val VERSION = "4.1.1"
|
|
6
6
|
|
|
7
7
|
fun getEspressoServerVersion() = VERSION
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-espresso-driver",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-espresso-driver",
|
|
9
|
-
"version": "4.
|
|
9
|
+
"version": "4.1.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"appium-adb": "^12.12.0",
|
|
13
|
-
"appium-android-driver": "^10.1
|
|
13
|
+
"appium-android-driver": "^10.2.1",
|
|
14
14
|
"asyncbox": "^3.0.0",
|
|
15
15
|
"axios": "^1.7.2",
|
|
16
16
|
"bluebird": "^3.5.0",
|
|
17
|
-
"io.appium.settings": "^5.
|
|
17
|
+
"io.appium.settings": "^5.14.3",
|
|
18
18
|
"lodash": "^4.17.11",
|
|
19
19
|
"portscanner": "^2.1.1",
|
|
20
20
|
"semver": "^7.6.2",
|
|
@@ -93,6 +93,17 @@
|
|
|
93
93
|
"spdy": "4.0.2"
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
|
+
"node_modules/@appium/base-driver/node_modules/axios": {
|
|
97
|
+
"version": "1.7.9",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
|
|
99
|
+
"integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
|
|
100
|
+
"license": "MIT",
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"follow-redirects": "^1.15.6",
|
|
103
|
+
"form-data": "^4.0.0",
|
|
104
|
+
"proxy-from-env": "^1.1.0"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
96
107
|
"node_modules/@appium/logger": {
|
|
97
108
|
"version": "1.6.1",
|
|
98
109
|
"resolved": "https://registry.npmjs.org/@appium/logger/-/logger-1.6.1.tgz",
|
|
@@ -174,6 +185,33 @@
|
|
|
174
185
|
"sharp": "0.33.5"
|
|
175
186
|
}
|
|
176
187
|
},
|
|
188
|
+
"node_modules/@appium/support/node_modules/axios": {
|
|
189
|
+
"version": "1.7.9",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.7.9.tgz",
|
|
191
|
+
"integrity": "sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==",
|
|
192
|
+
"license": "MIT",
|
|
193
|
+
"dependencies": {
|
|
194
|
+
"follow-redirects": "^1.15.6",
|
|
195
|
+
"form-data": "^4.0.0",
|
|
196
|
+
"proxy-from-env": "^1.1.0"
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"node_modules/@appium/support/node_modules/teen_process": {
|
|
200
|
+
"version": "2.2.3",
|
|
201
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.2.3.tgz",
|
|
202
|
+
"integrity": "sha512-8L540OalWH83qc6LHV5VMr0DjdP7KWUHQwTOImtWaG2ElW8BvLTh6M9871oGmmpOMb2BpOJQn2+09ZHWYsdTUA==",
|
|
203
|
+
"license": "Apache-2.0",
|
|
204
|
+
"dependencies": {
|
|
205
|
+
"bluebird": "^3.7.2",
|
|
206
|
+
"lodash": "^4.17.21",
|
|
207
|
+
"shell-quote": "^1.8.1",
|
|
208
|
+
"source-map-support": "^0.x"
|
|
209
|
+
},
|
|
210
|
+
"engines": {
|
|
211
|
+
"node": "^16.13.0 || >=18.0.0",
|
|
212
|
+
"npm": ">=8"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
177
215
|
"node_modules/@appium/tsconfig": {
|
|
178
216
|
"version": "0.3.4",
|
|
179
217
|
"resolved": "https://registry.npmjs.org/@appium/tsconfig/-/tsconfig-0.3.4.tgz",
|
|
@@ -342,9 +380,9 @@
|
|
|
342
380
|
"license": "MIT"
|
|
343
381
|
},
|
|
344
382
|
"node_modules/@xmldom/xmldom": {
|
|
345
|
-
"version": "0.9.
|
|
346
|
-
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.
|
|
347
|
-
"integrity": "sha512-
|
|
383
|
+
"version": "0.9.8",
|
|
384
|
+
"resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz",
|
|
385
|
+
"integrity": "sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==",
|
|
348
386
|
"license": "MIT",
|
|
349
387
|
"engines": {
|
|
350
388
|
"node": ">=14.6"
|
|
@@ -425,19 +463,19 @@
|
|
|
425
463
|
}
|
|
426
464
|
},
|
|
427
465
|
"node_modules/appium-android-driver": {
|
|
428
|
-
"version": "10.
|
|
429
|
-
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.
|
|
430
|
-
"integrity": "sha512-
|
|
466
|
+
"version": "10.2.1",
|
|
467
|
+
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.2.1.tgz",
|
|
468
|
+
"integrity": "sha512-zRi8tSTvaqh8r14eD8doC/NlGQNdcwXEbMwWhInBGonhbn7HPBgtp9iSFXfStfB0PTJsJnyItuTJDC3iXwoDxw==",
|
|
431
469
|
"license": "Apache-2.0",
|
|
432
470
|
"dependencies": {
|
|
433
471
|
"@appium/support": "^6.0.0",
|
|
434
472
|
"@colors/colors": "^1.6.0",
|
|
435
473
|
"appium-adb": "^12.12.0",
|
|
436
|
-
"appium-chromedriver": "^7.0.
|
|
474
|
+
"appium-chromedriver": "^7.0.6",
|
|
437
475
|
"asyncbox": "^3.0.0",
|
|
438
476
|
"axios": "^1.x",
|
|
439
477
|
"bluebird": "^3.4.7",
|
|
440
|
-
"io.appium.settings": "^5.
|
|
478
|
+
"io.appium.settings": "^5.14.3",
|
|
441
479
|
"lodash": "^4.17.4",
|
|
442
480
|
"lru-cache": "^10.0.1",
|
|
443
481
|
"moment": "^2.24.0",
|
|
@@ -458,9 +496,9 @@
|
|
|
458
496
|
}
|
|
459
497
|
},
|
|
460
498
|
"node_modules/appium-chromedriver": {
|
|
461
|
-
"version": "7.0.
|
|
462
|
-
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.
|
|
463
|
-
"integrity": "sha512-
|
|
499
|
+
"version": "7.0.8",
|
|
500
|
+
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.8.tgz",
|
|
501
|
+
"integrity": "sha512-X2MfK/xMVoUHFuQHSTuJaEF/ZGmP0tGc/5P6AzCYWdmOUmloxEXTeq+jkodh6/5MAanOcnnI3bhBpqGvwCjqjQ==",
|
|
464
502
|
"license": "Apache-2.0",
|
|
465
503
|
"dependencies": {
|
|
466
504
|
"@appium/base-driver": "^9.1.0",
|
|
@@ -571,9 +609,9 @@
|
|
|
571
609
|
"license": "MIT"
|
|
572
610
|
},
|
|
573
611
|
"node_modules/axios": {
|
|
574
|
-
"version": "1.
|
|
575
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
576
|
-
"integrity": "sha512-
|
|
612
|
+
"version": "1.8.2",
|
|
613
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
|
|
614
|
+
"integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
|
|
577
615
|
"license": "MIT",
|
|
578
616
|
"dependencies": {
|
|
579
617
|
"follow-redirects": "^1.15.6",
|
|
@@ -767,13 +805,13 @@
|
|
|
767
805
|
}
|
|
768
806
|
},
|
|
769
807
|
"node_modules/call-bound": {
|
|
770
|
-
"version": "1.0.
|
|
771
|
-
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.
|
|
772
|
-
"integrity": "sha512
|
|
808
|
+
"version": "1.0.4",
|
|
809
|
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
|
810
|
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
|
773
811
|
"license": "MIT",
|
|
774
812
|
"dependencies": {
|
|
775
|
-
"call-bind-apply-helpers": "^1.0.
|
|
776
|
-
"get-intrinsic": "^1.
|
|
813
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
814
|
+
"get-intrinsic": "^1.3.0"
|
|
777
815
|
},
|
|
778
816
|
"engines": {
|
|
779
817
|
"node": ">= 0.4"
|
|
@@ -1437,12 +1475,12 @@
|
|
|
1437
1475
|
}
|
|
1438
1476
|
},
|
|
1439
1477
|
"node_modules/foreground-child": {
|
|
1440
|
-
"version": "3.3.
|
|
1441
|
-
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.
|
|
1442
|
-
"integrity": "sha512-
|
|
1478
|
+
"version": "3.3.1",
|
|
1479
|
+
"resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz",
|
|
1480
|
+
"integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==",
|
|
1443
1481
|
"license": "ISC",
|
|
1444
1482
|
"dependencies": {
|
|
1445
|
-
"cross-spawn": "^7.0.
|
|
1483
|
+
"cross-spawn": "^7.0.6",
|
|
1446
1484
|
"signal-exit": "^4.0.1"
|
|
1447
1485
|
},
|
|
1448
1486
|
"engines": {
|
|
@@ -1552,17 +1590,17 @@
|
|
|
1552
1590
|
}
|
|
1553
1591
|
},
|
|
1554
1592
|
"node_modules/get-intrinsic": {
|
|
1555
|
-
"version": "1.
|
|
1556
|
-
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.
|
|
1557
|
-
"integrity": "sha512-
|
|
1593
|
+
"version": "1.3.0",
|
|
1594
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
1595
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
1558
1596
|
"license": "MIT",
|
|
1559
1597
|
"dependencies": {
|
|
1560
|
-
"call-bind-apply-helpers": "^1.0.
|
|
1598
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
1561
1599
|
"es-define-property": "^1.0.1",
|
|
1562
1600
|
"es-errors": "^1.3.0",
|
|
1563
|
-
"es-object-atoms": "^1.
|
|
1601
|
+
"es-object-atoms": "^1.1.1",
|
|
1564
1602
|
"function-bind": "^1.1.2",
|
|
1565
|
-
"get-proto": "^1.0.
|
|
1603
|
+
"get-proto": "^1.0.1",
|
|
1566
1604
|
"gopd": "^1.2.0",
|
|
1567
1605
|
"has-symbols": "^1.1.0",
|
|
1568
1606
|
"hasown": "^2.0.2",
|
|
@@ -1864,9 +1902,9 @@
|
|
|
1864
1902
|
}
|
|
1865
1903
|
},
|
|
1866
1904
|
"node_modules/io.appium.settings": {
|
|
1867
|
-
"version": "5.
|
|
1868
|
-
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.
|
|
1869
|
-
"integrity": "sha512-
|
|
1905
|
+
"version": "5.14.4",
|
|
1906
|
+
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.14.4.tgz",
|
|
1907
|
+
"integrity": "sha512-6W+sGscwQUtF55ffbSI/1jSoycPD081hQs4bARE3ojGLlOQBPcYVfqUDXyubr0FViqyqk5my/rEHv4mTShOaSQ==",
|
|
1870
1908
|
"license": "Apache-2.0",
|
|
1871
1909
|
"dependencies": {
|
|
1872
1910
|
"@appium/logger": "^1.3.0",
|
|
@@ -3565,9 +3603,9 @@
|
|
|
3565
3603
|
}
|
|
3566
3604
|
},
|
|
3567
3605
|
"node_modules/teen_process": {
|
|
3568
|
-
"version": "2.
|
|
3569
|
-
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.
|
|
3570
|
-
"integrity": "sha512-
|
|
3606
|
+
"version": "2.3.1",
|
|
3607
|
+
"resolved": "https://registry.npmjs.org/teen_process/-/teen_process-2.3.1.tgz",
|
|
3608
|
+
"integrity": "sha512-duT4gPj7HxEYy+AR4bJ9MNwf8GMLpJd+sNRAK2PTx53FpCcaiXVft3ePZh3hO6PY8NFWZMxTC3ZAtxyztScEsw==",
|
|
3571
3609
|
"license": "Apache-2.0",
|
|
3572
3610
|
"dependencies": {
|
|
3573
3611
|
"bluebird": "^3.7.2",
|
|
@@ -3646,9 +3684,9 @@
|
|
|
3646
3684
|
}
|
|
3647
3685
|
},
|
|
3648
3686
|
"node_modules/typescript": {
|
|
3649
|
-
"version": "5.
|
|
3650
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
3651
|
-
"integrity": "sha512-
|
|
3687
|
+
"version": "5.8.2",
|
|
3688
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
|
|
3689
|
+
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
|
|
3652
3690
|
"dev": true,
|
|
3653
3691
|
"license": "Apache-2.0",
|
|
3654
3692
|
"bin": {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "4.
|
|
10
|
+
"version": "4.1.1",
|
|
11
11
|
"author": "Appium Contributors",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
],
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"appium-adb": "^12.12.0",
|
|
78
|
-
"appium-android-driver": "^10.1
|
|
78
|
+
"appium-android-driver": "^10.2.1",
|
|
79
79
|
"asyncbox": "^3.0.0",
|
|
80
80
|
"axios": "^1.7.2",
|
|
81
81
|
"bluebird": "^3.5.0",
|
|
82
|
-
"io.appium.settings": "^5.
|
|
82
|
+
"io.appium.settings": "^5.14.3",
|
|
83
83
|
"lodash": "^4.17.11",
|
|
84
84
|
"portscanner": "^2.1.1",
|
|
85
85
|
"semver": "^7.6.2",
|