appium-espresso-driver 2.24.0 → 2.25.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 +7 -0
- package/espresso-server/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk +0 -0
- package/espresso-server/app/src/androidTest/java/io/appium/espressoserver/lib/helpers/CustomFailureHandler.kt +41 -0
- package/espresso-server/app/src/androidTest/java/io/appium/espressoserver/lib/http/Server.kt +9 -0
- package/npm-shrinkwrap.json +71 -152
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [2.25.0](https://github.com/appium/appium-espresso-driver/compare/v2.24.0...v2.25.0) (2023-08-07)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* Disable screenshots and hierarchy snapshots on failures ([#895](https://github.com/appium/appium-espresso-driver/issues/895)) ([40bd4a7](https://github.com/appium/appium-espresso-driver/commit/40bd4a7074e1e11bb5778e2b323a0ef7950e58a4))
|
|
7
|
+
|
|
1
8
|
## [2.24.0](https://github.com/appium/appium-espresso-driver/compare/v2.23.5...v2.24.0) (2023-06-26)
|
|
2
9
|
|
|
3
10
|
|
|
Binary file
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (C) 2014 The Android Open Source Project
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
package io.appium.espressoserver.lib.helpers
|
|
18
|
+
|
|
19
|
+
import android.content.Context
|
|
20
|
+
import android.view.View
|
|
21
|
+
import androidx.test.espresso.FailureHandler
|
|
22
|
+
import androidx.test.espresso.base.DefaultFailureHandler
|
|
23
|
+
import org.hamcrest.Matcher
|
|
24
|
+
import java.util.concurrent.atomic.AtomicInteger
|
|
25
|
+
|
|
26
|
+
class CustomFailureHandler(appContext: Context) : FailureHandler {
|
|
27
|
+
private val originalHandler = DefaultFailureHandler(appContext)
|
|
28
|
+
|
|
29
|
+
override fun handle(error: Throwable?, viewMatcher: Matcher<View>?) {
|
|
30
|
+
val failureCountField = DefaultFailureHandler::class.java.getDeclaredField("failureCount")
|
|
31
|
+
failureCountField.isAccessible = true
|
|
32
|
+
(failureCountField.get(originalHandler) as AtomicInteger).incrementAndGet()
|
|
33
|
+
|
|
34
|
+
val handlersField = DefaultFailureHandler::class.java.getDeclaredField("handlers")
|
|
35
|
+
handlersField.isAccessible = true
|
|
36
|
+
@Suppress("UNCHECKED_CAST")
|
|
37
|
+
for (handler in (handlersField.get(originalHandler) as java.util.ArrayList<FailureHandler>)) {
|
|
38
|
+
handler.handle(error, viewMatcher)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
package/espresso-server/app/src/androidTest/java/io/appium/espressoserver/lib/http/Server.kt
CHANGED
|
@@ -16,9 +16,12 @@
|
|
|
16
16
|
|
|
17
17
|
package io.appium.espressoserver.lib.http
|
|
18
18
|
|
|
19
|
+
import androidx.test.espresso.Espresso
|
|
20
|
+
import androidx.test.platform.app.InstrumentationRegistry
|
|
19
21
|
import com.google.gson.GsonBuilder
|
|
20
22
|
import fi.iki.elonen.NanoHTTPD
|
|
21
23
|
import io.appium.espressoserver.lib.helpers.AndroidLogger
|
|
24
|
+
import io.appium.espressoserver.lib.helpers.CustomFailureHandler
|
|
22
25
|
import io.appium.espressoserver.lib.helpers.StringHelpers
|
|
23
26
|
import io.appium.espressoserver.lib.helpers.setAccessibilityServiceState
|
|
24
27
|
import io.appium.espressoserver.lib.http.response.AppiumResponse
|
|
@@ -86,6 +89,7 @@ object Server : NanoHTTPD(DEFAULT_PORT) {
|
|
|
86
89
|
}
|
|
87
90
|
|
|
88
91
|
setAccessibilityServiceState()
|
|
92
|
+
setCustomFailureHandler()
|
|
89
93
|
|
|
90
94
|
try {
|
|
91
95
|
super.start(SOCKET_READ_TIMEOUT, false)
|
|
@@ -98,6 +102,11 @@ object Server : NanoHTTPD(DEFAULT_PORT) {
|
|
|
98
102
|
router = Router()
|
|
99
103
|
}
|
|
100
104
|
|
|
105
|
+
private fun setCustomFailureHandler() =
|
|
106
|
+
Espresso.setFailureHandler(
|
|
107
|
+
CustomFailureHandler(InstrumentationRegistry.getInstrumentation().targetContext)
|
|
108
|
+
)
|
|
109
|
+
|
|
101
110
|
override fun stop() {
|
|
102
111
|
super.stop()
|
|
103
112
|
AndroidLogger.info("\nStopping Appium Espresso at port $DEFAULT_PORT\n")
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-espresso-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-espresso-driver",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.25.0",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "^7.4.3",
|
|
@@ -61,11 +61,11 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"node_modules/@appium/base-driver": {
|
|
64
|
-
"version": "9.3.
|
|
64
|
+
"version": "9.3.16",
|
|
65
65
|
"license": "Apache-2.0",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@appium/support": "^4.1.
|
|
68
|
-
"@appium/types": "^0.13.
|
|
67
|
+
"@appium/support": "^4.1.3",
|
|
68
|
+
"@appium/types": "^0.13.2",
|
|
69
69
|
"@colors/colors": "1.5.0",
|
|
70
70
|
"@types/async-lock": "1.4.0",
|
|
71
71
|
"@types/bluebird": "3.5.38",
|
|
@@ -103,12 +103,12 @@
|
|
|
103
103
|
}
|
|
104
104
|
},
|
|
105
105
|
"node_modules/@appium/base-plugin": {
|
|
106
|
-
"version": "2.2.
|
|
106
|
+
"version": "2.2.16",
|
|
107
107
|
"extraneous": true,
|
|
108
108
|
"license": "Apache-2.0",
|
|
109
109
|
"dependencies": {
|
|
110
|
-
"@appium/base-driver": "^9.3.
|
|
111
|
-
"@appium/support": "^4.1.
|
|
110
|
+
"@appium/base-driver": "^9.3.16",
|
|
111
|
+
"@appium/support": "^4.1.3"
|
|
112
112
|
},
|
|
113
113
|
"engines": {
|
|
114
114
|
"node": "^14.17.0 || ^16.13.0 || >=18.0.0",
|
|
@@ -116,11 +116,11 @@
|
|
|
116
116
|
}
|
|
117
117
|
},
|
|
118
118
|
"node_modules/@appium/docutils": {
|
|
119
|
-
"version": "0.4.
|
|
119
|
+
"version": "0.4.5",
|
|
120
120
|
"extraneous": true,
|
|
121
121
|
"license": "Apache-2.0",
|
|
122
122
|
"dependencies": {
|
|
123
|
-
"@appium/support": "^4.1.
|
|
123
|
+
"@appium/support": "^4.1.3",
|
|
124
124
|
"@appium/tsconfig": "^0.3.0",
|
|
125
125
|
"@appium/typedoc-plugin-appium": "^0.6.5",
|
|
126
126
|
"@sliphua/lilconfig-ts-loader": "3.2.2",
|
|
@@ -136,9 +136,9 @@
|
|
|
136
136
|
"log-symbols": "4.1.0",
|
|
137
137
|
"pkg-dir": "5.0.0",
|
|
138
138
|
"read-pkg": "5.2.0",
|
|
139
|
-
"semver": "7.5.
|
|
139
|
+
"semver": "7.5.3",
|
|
140
140
|
"source-map-support": "0.5.21",
|
|
141
|
-
"teen_process": "2.0.
|
|
141
|
+
"teen_process": "2.0.4",
|
|
142
142
|
"type-fest": "3.11.1",
|
|
143
143
|
"typedoc": "0.23.28",
|
|
144
144
|
"typedoc-plugin-markdown": "3.14.0",
|
|
@@ -156,17 +156,6 @@
|
|
|
156
156
|
"npm": ">=8"
|
|
157
157
|
}
|
|
158
158
|
},
|
|
159
|
-
"node_modules/@appium/docutils/node_modules/@babel/runtime": {
|
|
160
|
-
"version": "7.19.0",
|
|
161
|
-
"extraneous": true,
|
|
162
|
-
"license": "MIT",
|
|
163
|
-
"dependencies": {
|
|
164
|
-
"regenerator-runtime": "^0.13.4"
|
|
165
|
-
},
|
|
166
|
-
"engines": {
|
|
167
|
-
"node": ">=6.9.0"
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
159
|
"node_modules/@appium/docutils/node_modules/ansi-styles": {
|
|
171
160
|
"version": "4.3.0",
|
|
172
161
|
"extraneous": true,
|
|
@@ -224,7 +213,7 @@
|
|
|
224
213
|
}
|
|
225
214
|
},
|
|
226
215
|
"node_modules/@appium/docutils/node_modules/semver": {
|
|
227
|
-
"version": "7.5.
|
|
216
|
+
"version": "7.5.3",
|
|
228
217
|
"extraneous": true,
|
|
229
218
|
"license": "ISC",
|
|
230
219
|
"dependencies": {
|
|
@@ -237,11 +226,6 @@
|
|
|
237
226
|
"node": ">=10"
|
|
238
227
|
}
|
|
239
228
|
},
|
|
240
|
-
"node_modules/@appium/docutils/node_modules/shell-quote": {
|
|
241
|
-
"version": "1.7.3",
|
|
242
|
-
"extraneous": true,
|
|
243
|
-
"license": "MIT"
|
|
244
|
-
},
|
|
245
229
|
"node_modules/@appium/docutils/node_modules/supports-color": {
|
|
246
230
|
"version": "7.2.0",
|
|
247
231
|
"extraneous": true,
|
|
@@ -253,44 +237,13 @@
|
|
|
253
237
|
"node": ">=8"
|
|
254
238
|
}
|
|
255
239
|
},
|
|
256
|
-
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
257
|
-
"version": "2.0.2",
|
|
258
|
-
"extraneous": true,
|
|
259
|
-
"license": "Apache-2.0",
|
|
260
|
-
"dependencies": {
|
|
261
|
-
"@babel/runtime": "7.19.0",
|
|
262
|
-
"bluebird": "3.7.2",
|
|
263
|
-
"lodash": "4.17.21",
|
|
264
|
-
"shell-quote": "1.7.3",
|
|
265
|
-
"source-map-support": "0.5.21",
|
|
266
|
-
"which": "2.0.2"
|
|
267
|
-
},
|
|
268
|
-
"engines": {
|
|
269
|
-
"node": ">=14",
|
|
270
|
-
"npm": ">=6"
|
|
271
|
-
}
|
|
272
|
-
},
|
|
273
|
-
"node_modules/@appium/docutils/node_modules/which": {
|
|
274
|
-
"version": "2.0.2",
|
|
275
|
-
"extraneous": true,
|
|
276
|
-
"license": "ISC",
|
|
277
|
-
"dependencies": {
|
|
278
|
-
"isexe": "^2.0.0"
|
|
279
|
-
},
|
|
280
|
-
"bin": {
|
|
281
|
-
"node-which": "bin/node-which"
|
|
282
|
-
},
|
|
283
|
-
"engines": {
|
|
284
|
-
"node": ">= 8"
|
|
285
|
-
}
|
|
286
|
-
},
|
|
287
240
|
"node_modules/@appium/docutils/node_modules/yallist": {
|
|
288
241
|
"version": "4.0.0",
|
|
289
242
|
"extraneous": true,
|
|
290
243
|
"license": "ISC"
|
|
291
244
|
},
|
|
292
245
|
"node_modules/@appium/schema": {
|
|
293
|
-
"version": "0.3.
|
|
246
|
+
"version": "0.3.1",
|
|
294
247
|
"license": "Apache-2.0",
|
|
295
248
|
"dependencies": {
|
|
296
249
|
"@types/json-schema": "7.0.12",
|
|
@@ -303,11 +256,11 @@
|
|
|
303
256
|
}
|
|
304
257
|
},
|
|
305
258
|
"node_modules/@appium/support": {
|
|
306
|
-
"version": "4.1.
|
|
259
|
+
"version": "4.1.3",
|
|
307
260
|
"license": "Apache-2.0",
|
|
308
261
|
"dependencies": {
|
|
309
262
|
"@appium/tsconfig": "^0.3.0",
|
|
310
|
-
"@appium/types": "^0.13.
|
|
263
|
+
"@appium/types": "^0.13.2",
|
|
311
264
|
"@colors/colors": "1.5.0",
|
|
312
265
|
"@types/archiver": "5.3.2",
|
|
313
266
|
"@types/base64-stream": "1.0.2",
|
|
@@ -324,7 +277,7 @@
|
|
|
324
277
|
"@types/shell-quote": "1.7.1",
|
|
325
278
|
"@types/supports-color": "8.1.1",
|
|
326
279
|
"@types/teen_process": "2.0.0",
|
|
327
|
-
"@types/uuid": "9.0.
|
|
280
|
+
"@types/uuid": "9.0.2",
|
|
328
281
|
"@types/which": "3.0.0",
|
|
329
282
|
"archiver": "5.3.1",
|
|
330
283
|
"axios": "1.4.0",
|
|
@@ -351,11 +304,11 @@
|
|
|
351
304
|
"read-pkg": "5.2.0",
|
|
352
305
|
"resolve-from": "5.0.0",
|
|
353
306
|
"sanitize-filename": "1.6.3",
|
|
354
|
-
"semver": "7.5.
|
|
307
|
+
"semver": "7.5.3",
|
|
355
308
|
"shell-quote": "1.8.1",
|
|
356
309
|
"source-map-support": "0.5.21",
|
|
357
310
|
"supports-color": "8.1.1",
|
|
358
|
-
"teen_process": "2.0.
|
|
311
|
+
"teen_process": "2.0.4",
|
|
359
312
|
"type-fest": "3.11.1",
|
|
360
313
|
"uuid": "9.0.0",
|
|
361
314
|
"which": "3.0.1",
|
|
@@ -369,16 +322,6 @@
|
|
|
369
322
|
"sharp": "0.32.1"
|
|
370
323
|
}
|
|
371
324
|
},
|
|
372
|
-
"node_modules/@appium/support/node_modules/@babel/runtime": {
|
|
373
|
-
"version": "7.19.0",
|
|
374
|
-
"license": "MIT",
|
|
375
|
-
"dependencies": {
|
|
376
|
-
"regenerator-runtime": "^0.13.4"
|
|
377
|
-
},
|
|
378
|
-
"engines": {
|
|
379
|
-
"node": ">=6.9.0"
|
|
380
|
-
}
|
|
381
|
-
},
|
|
382
325
|
"node_modules/@appium/support/node_modules/brace-expansion": {
|
|
383
326
|
"version": "2.0.1",
|
|
384
327
|
"license": "MIT",
|
|
@@ -424,7 +367,7 @@
|
|
|
424
367
|
}
|
|
425
368
|
},
|
|
426
369
|
"node_modules/@appium/support/node_modules/semver": {
|
|
427
|
-
"version": "7.5.
|
|
370
|
+
"version": "7.5.3",
|
|
428
371
|
"license": "ISC",
|
|
429
372
|
"dependencies": {
|
|
430
373
|
"lru-cache": "^6.0.0"
|
|
@@ -436,39 +379,6 @@
|
|
|
436
379
|
"node": ">=10"
|
|
437
380
|
}
|
|
438
381
|
},
|
|
439
|
-
"node_modules/@appium/support/node_modules/teen_process": {
|
|
440
|
-
"version": "2.0.2",
|
|
441
|
-
"license": "Apache-2.0",
|
|
442
|
-
"dependencies": {
|
|
443
|
-
"@babel/runtime": "7.19.0",
|
|
444
|
-
"bluebird": "3.7.2",
|
|
445
|
-
"lodash": "4.17.21",
|
|
446
|
-
"shell-quote": "1.7.3",
|
|
447
|
-
"source-map-support": "0.5.21",
|
|
448
|
-
"which": "2.0.2"
|
|
449
|
-
},
|
|
450
|
-
"engines": {
|
|
451
|
-
"node": ">=14",
|
|
452
|
-
"npm": ">=6"
|
|
453
|
-
}
|
|
454
|
-
},
|
|
455
|
-
"node_modules/@appium/support/node_modules/teen_process/node_modules/shell-quote": {
|
|
456
|
-
"version": "1.7.3",
|
|
457
|
-
"license": "MIT"
|
|
458
|
-
},
|
|
459
|
-
"node_modules/@appium/support/node_modules/teen_process/node_modules/which": {
|
|
460
|
-
"version": "2.0.2",
|
|
461
|
-
"license": "ISC",
|
|
462
|
-
"dependencies": {
|
|
463
|
-
"isexe": "^2.0.0"
|
|
464
|
-
},
|
|
465
|
-
"bin": {
|
|
466
|
-
"node-which": "bin/node-which"
|
|
467
|
-
},
|
|
468
|
-
"engines": {
|
|
469
|
-
"node": ">= 8"
|
|
470
|
-
}
|
|
471
|
-
},
|
|
472
382
|
"node_modules/@appium/support/node_modules/yallist": {
|
|
473
383
|
"version": "4.0.0",
|
|
474
384
|
"license": "ISC"
|
|
@@ -507,14 +417,14 @@
|
|
|
507
417
|
}
|
|
508
418
|
},
|
|
509
419
|
"node_modules/@appium/types": {
|
|
510
|
-
"version": "0.13.
|
|
420
|
+
"version": "0.13.2",
|
|
511
421
|
"license": "Apache-2.0",
|
|
512
422
|
"dependencies": {
|
|
513
|
-
"@appium/schema": "^0.3.
|
|
423
|
+
"@appium/schema": "^0.3.1",
|
|
514
424
|
"@appium/tsconfig": "^0.3.0",
|
|
515
425
|
"@types/express": "4.17.17",
|
|
516
426
|
"@types/npmlog": "4.1.4",
|
|
517
|
-
"@types/ws": "8.5.
|
|
427
|
+
"@types/ws": "8.5.5",
|
|
518
428
|
"type-fest": "3.11.1"
|
|
519
429
|
},
|
|
520
430
|
"engines": {
|
|
@@ -552,7 +462,7 @@
|
|
|
552
462
|
}
|
|
553
463
|
},
|
|
554
464
|
"node_modules/@babel/runtime": {
|
|
555
|
-
"version": "7.22.
|
|
465
|
+
"version": "7.22.6",
|
|
556
466
|
"license": "MIT",
|
|
557
467
|
"dependencies": {
|
|
558
468
|
"regenerator-runtime": "^0.13.11"
|
|
@@ -806,7 +716,7 @@
|
|
|
806
716
|
}
|
|
807
717
|
},
|
|
808
718
|
"node_modules/@types/node": {
|
|
809
|
-
"version": "20.
|
|
719
|
+
"version": "20.4.8",
|
|
810
720
|
"license": "MIT"
|
|
811
721
|
},
|
|
812
722
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -885,7 +795,7 @@
|
|
|
885
795
|
"license": "MIT"
|
|
886
796
|
},
|
|
887
797
|
"node_modules/@types/uuid": {
|
|
888
|
-
"version": "9.0.
|
|
798
|
+
"version": "9.0.2",
|
|
889
799
|
"license": "MIT"
|
|
890
800
|
},
|
|
891
801
|
"node_modules/@types/which": {
|
|
@@ -898,14 +808,14 @@
|
|
|
898
808
|
"license": "MIT"
|
|
899
809
|
},
|
|
900
810
|
"node_modules/@types/ws": {
|
|
901
|
-
"version": "8.5.
|
|
811
|
+
"version": "8.5.5",
|
|
902
812
|
"license": "MIT",
|
|
903
813
|
"dependencies": {
|
|
904
814
|
"@types/node": "*"
|
|
905
815
|
}
|
|
906
816
|
},
|
|
907
817
|
"node_modules/@xmldom/xmldom": {
|
|
908
|
-
"version": "0.8.
|
|
818
|
+
"version": "0.8.10",
|
|
909
819
|
"license": "MIT",
|
|
910
820
|
"engines": {
|
|
911
821
|
"node": ">=10.0.0"
|
|
@@ -990,7 +900,7 @@
|
|
|
990
900
|
}
|
|
991
901
|
},
|
|
992
902
|
"node_modules/ansi-sequence-parser": {
|
|
993
|
-
"version": "1.1.
|
|
903
|
+
"version": "1.1.1",
|
|
994
904
|
"extraneous": true,
|
|
995
905
|
"license": "MIT"
|
|
996
906
|
},
|
|
@@ -1005,7 +915,7 @@
|
|
|
1005
915
|
}
|
|
1006
916
|
},
|
|
1007
917
|
"node_modules/appium-adb": {
|
|
1008
|
-
"version": "9.
|
|
918
|
+
"version": "9.14.4",
|
|
1009
919
|
"license": "Apache-2.0",
|
|
1010
920
|
"dependencies": {
|
|
1011
921
|
"@appium/support": "^4.0.0",
|
|
@@ -1013,9 +923,9 @@
|
|
|
1013
923
|
"async-lock": "^1.0.0",
|
|
1014
924
|
"asyncbox": "^2.6.0",
|
|
1015
925
|
"bluebird": "^3.4.7",
|
|
1016
|
-
"ini": "^
|
|
926
|
+
"ini": "^4.1.1",
|
|
1017
927
|
"lodash": "^4.0.0",
|
|
1018
|
-
"lru-cache": "^
|
|
928
|
+
"lru-cache": "^10.0.0",
|
|
1019
929
|
"semver": "^7.0.0",
|
|
1020
930
|
"source-map-support": "^0.x",
|
|
1021
931
|
"teen_process": "^2.0.1",
|
|
@@ -1027,14 +937,14 @@
|
|
|
1027
937
|
}
|
|
1028
938
|
},
|
|
1029
939
|
"node_modules/appium-adb/node_modules/lru-cache": {
|
|
1030
|
-
"version": "
|
|
940
|
+
"version": "10.0.0",
|
|
1031
941
|
"license": "ISC",
|
|
1032
942
|
"engines": {
|
|
1033
|
-
"node": ">=
|
|
943
|
+
"node": "14 || >=16.14"
|
|
1034
944
|
}
|
|
1035
945
|
},
|
|
1036
946
|
"node_modules/appium-adb/node_modules/semver": {
|
|
1037
|
-
"version": "7.5.
|
|
947
|
+
"version": "7.5.4",
|
|
1038
948
|
"license": "ISC",
|
|
1039
949
|
"dependencies": {
|
|
1040
950
|
"lru-cache": "^6.0.0"
|
|
@@ -1098,7 +1008,7 @@
|
|
|
1098
1008
|
}
|
|
1099
1009
|
},
|
|
1100
1010
|
"node_modules/appium-android-driver/node_modules/semver": {
|
|
1101
|
-
"version": "7.5.
|
|
1011
|
+
"version": "7.5.4",
|
|
1102
1012
|
"license": "ISC",
|
|
1103
1013
|
"dependencies": {
|
|
1104
1014
|
"lru-cache": "^6.0.0"
|
|
@@ -1125,7 +1035,7 @@
|
|
|
1125
1035
|
"license": "ISC"
|
|
1126
1036
|
},
|
|
1127
1037
|
"node_modules/appium-chromedriver": {
|
|
1128
|
-
"version": "5.
|
|
1038
|
+
"version": "5.6.2",
|
|
1129
1039
|
"hasInstallScript": true,
|
|
1130
1040
|
"license": "Apache-2.0",
|
|
1131
1041
|
"dependencies": {
|
|
@@ -1133,10 +1043,11 @@
|
|
|
1133
1043
|
"@appium/support": "^4.0.0",
|
|
1134
1044
|
"@babel/runtime": "^7.0.0",
|
|
1135
1045
|
"@xmldom/xmldom": "^0.x",
|
|
1046
|
+
"appium-adb": "^9.14.1",
|
|
1136
1047
|
"asyncbox": "^2.0.2",
|
|
1137
1048
|
"axios": "^1.x",
|
|
1138
1049
|
"bluebird": "^3.5.1",
|
|
1139
|
-
"compare-versions": "^
|
|
1050
|
+
"compare-versions": "^6.0.0",
|
|
1140
1051
|
"fancy-log": "^2.0.0",
|
|
1141
1052
|
"lodash": "^4.17.4",
|
|
1142
1053
|
"semver": "^7.0.0",
|
|
@@ -1160,7 +1071,7 @@
|
|
|
1160
1071
|
}
|
|
1161
1072
|
},
|
|
1162
1073
|
"node_modules/appium-chromedriver/node_modules/semver": {
|
|
1163
|
-
"version": "7.5.
|
|
1074
|
+
"version": "7.5.4",
|
|
1164
1075
|
"license": "ISC",
|
|
1165
1076
|
"dependencies": {
|
|
1166
1077
|
"lru-cache": "^6.0.0"
|
|
@@ -1215,6 +1126,10 @@
|
|
|
1215
1126
|
"node": ">= 6"
|
|
1216
1127
|
}
|
|
1217
1128
|
},
|
|
1129
|
+
"node_modules/archiver-utils/node_modules/isarray": {
|
|
1130
|
+
"version": "1.0.0",
|
|
1131
|
+
"license": "MIT"
|
|
1132
|
+
},
|
|
1218
1133
|
"node_modules/archiver-utils/node_modules/readable-stream": {
|
|
1219
1134
|
"version": "2.3.8",
|
|
1220
1135
|
"license": "MIT",
|
|
@@ -1240,7 +1155,7 @@
|
|
|
1240
1155
|
}
|
|
1241
1156
|
},
|
|
1242
1157
|
"node_modules/are-we-there-yet": {
|
|
1243
|
-
"version": "4.0.
|
|
1158
|
+
"version": "4.0.1",
|
|
1244
1159
|
"license": "ISC",
|
|
1245
1160
|
"dependencies": {
|
|
1246
1161
|
"delegates": "^1.0.0",
|
|
@@ -1273,13 +1188,14 @@
|
|
|
1273
1188
|
}
|
|
1274
1189
|
},
|
|
1275
1190
|
"node_modules/are-we-there-yet/node_modules/readable-stream": {
|
|
1276
|
-
"version": "4.4.
|
|
1191
|
+
"version": "4.4.2",
|
|
1277
1192
|
"license": "MIT",
|
|
1278
1193
|
"dependencies": {
|
|
1279
1194
|
"abort-controller": "^3.0.0",
|
|
1280
1195
|
"buffer": "^6.0.3",
|
|
1281
1196
|
"events": "^3.3.0",
|
|
1282
|
-
"process": "^0.11.10"
|
|
1197
|
+
"process": "^0.11.10",
|
|
1198
|
+
"string_decoder": "^1.3.0"
|
|
1283
1199
|
},
|
|
1284
1200
|
"engines": {
|
|
1285
1201
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
|
@@ -1690,7 +1606,7 @@
|
|
|
1690
1606
|
}
|
|
1691
1607
|
},
|
|
1692
1608
|
"node_modules/compare-versions": {
|
|
1693
|
-
"version": "
|
|
1609
|
+
"version": "6.0.0",
|
|
1694
1610
|
"license": "MIT"
|
|
1695
1611
|
},
|
|
1696
1612
|
"node_modules/compress-commons": {
|
|
@@ -1881,7 +1797,7 @@
|
|
|
1881
1797
|
}
|
|
1882
1798
|
},
|
|
1883
1799
|
"node_modules/detect-libc": {
|
|
1884
|
-
"version": "2.0.
|
|
1800
|
+
"version": "2.0.2",
|
|
1885
1801
|
"license": "Apache-2.0",
|
|
1886
1802
|
"optional": true,
|
|
1887
1803
|
"engines": {
|
|
@@ -2267,7 +2183,7 @@
|
|
|
2267
2183
|
}
|
|
2268
2184
|
},
|
|
2269
2185
|
"node_modules/gauge/node_modules/signal-exit": {
|
|
2270
|
-
"version": "4.0
|
|
2186
|
+
"version": "4.1.0",
|
|
2271
2187
|
"license": "ISC",
|
|
2272
2188
|
"engines": {
|
|
2273
2189
|
"node": ">=14"
|
|
@@ -2470,14 +2386,14 @@
|
|
|
2470
2386
|
"license": "ISC"
|
|
2471
2387
|
},
|
|
2472
2388
|
"node_modules/ini": {
|
|
2473
|
-
"version": "
|
|
2389
|
+
"version": "4.1.1",
|
|
2474
2390
|
"license": "ISC",
|
|
2475
2391
|
"engines": {
|
|
2476
|
-
"node": "^
|
|
2392
|
+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
|
|
2477
2393
|
}
|
|
2478
2394
|
},
|
|
2479
2395
|
"node_modules/io.appium.settings": {
|
|
2480
|
-
"version": "5.0
|
|
2396
|
+
"version": "5.1.0",
|
|
2481
2397
|
"license": "Apache-2.0",
|
|
2482
2398
|
"engines": {
|
|
2483
2399
|
"node": ">=14",
|
|
@@ -2496,7 +2412,7 @@
|
|
|
2496
2412
|
"license": "MIT"
|
|
2497
2413
|
},
|
|
2498
2414
|
"node_modules/is-core-module": {
|
|
2499
|
-
"version": "2.
|
|
2415
|
+
"version": "2.13.0",
|
|
2500
2416
|
"license": "MIT",
|
|
2501
2417
|
"dependencies": {
|
|
2502
2418
|
"has": "^1.0.3"
|
|
@@ -2541,10 +2457,6 @@
|
|
|
2541
2457
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
2542
2458
|
}
|
|
2543
2459
|
},
|
|
2544
|
-
"node_modules/isarray": {
|
|
2545
|
-
"version": "1.0.0",
|
|
2546
|
-
"license": "MIT"
|
|
2547
|
-
},
|
|
2548
2460
|
"node_modules/isexe": {
|
|
2549
2461
|
"version": "2.0.0",
|
|
2550
2462
|
"license": "ISC"
|
|
@@ -2626,6 +2538,10 @@
|
|
|
2626
2538
|
"node": ">= 0.6.3"
|
|
2627
2539
|
}
|
|
2628
2540
|
},
|
|
2541
|
+
"node_modules/lazystream/node_modules/isarray": {
|
|
2542
|
+
"version": "1.0.0",
|
|
2543
|
+
"license": "MIT"
|
|
2544
|
+
},
|
|
2629
2545
|
"node_modules/lazystream/node_modules/readable-stream": {
|
|
2630
2546
|
"version": "2.3.8",
|
|
2631
2547
|
"license": "MIT",
|
|
@@ -3063,7 +2979,7 @@
|
|
|
3063
2979
|
}
|
|
3064
2980
|
},
|
|
3065
2981
|
"node_modules/node-abi/node_modules/semver": {
|
|
3066
|
-
"version": "7.5.
|
|
2982
|
+
"version": "7.5.4",
|
|
3067
2983
|
"license": "ISC",
|
|
3068
2984
|
"optional": true,
|
|
3069
2985
|
"dependencies": {
|
|
@@ -3097,7 +3013,7 @@
|
|
|
3097
3013
|
}
|
|
3098
3014
|
},
|
|
3099
3015
|
"node_modules/normalize-package-data/node_modules/semver": {
|
|
3100
|
-
"version": "5.7.
|
|
3016
|
+
"version": "5.7.2",
|
|
3101
3017
|
"license": "ISC",
|
|
3102
3018
|
"bin": {
|
|
3103
3019
|
"semver": "bin/semver"
|
|
@@ -3644,10 +3560,10 @@
|
|
|
3644
3560
|
}
|
|
3645
3561
|
},
|
|
3646
3562
|
"node_modules/resolve": {
|
|
3647
|
-
"version": "1.22.
|
|
3563
|
+
"version": "1.22.4",
|
|
3648
3564
|
"license": "MIT",
|
|
3649
3565
|
"dependencies": {
|
|
3650
|
-
"is-core-module": "^2.
|
|
3566
|
+
"is-core-module": "^2.13.0",
|
|
3651
3567
|
"path-parse": "^1.0.7",
|
|
3652
3568
|
"supports-preserve-symlinks-flag": "^1.0.0"
|
|
3653
3569
|
},
|
|
@@ -3853,7 +3769,7 @@
|
|
|
3853
3769
|
}
|
|
3854
3770
|
},
|
|
3855
3771
|
"node_modules/sharp/node_modules/semver": {
|
|
3856
|
-
"version": "7.5.
|
|
3772
|
+
"version": "7.5.4",
|
|
3857
3773
|
"license": "ISC",
|
|
3858
3774
|
"optional": true,
|
|
3859
3775
|
"dependencies": {
|
|
@@ -4145,9 +4061,12 @@
|
|
|
4145
4061
|
}
|
|
4146
4062
|
},
|
|
4147
4063
|
"node_modules/triple-beam": {
|
|
4148
|
-
"version": "1.
|
|
4064
|
+
"version": "1.4.1",
|
|
4149
4065
|
"extraneous": true,
|
|
4150
|
-
"license": "MIT"
|
|
4066
|
+
"license": "MIT",
|
|
4067
|
+
"engines": {
|
|
4068
|
+
"node": ">= 14.0.0"
|
|
4069
|
+
}
|
|
4151
4070
|
},
|
|
4152
4071
|
"node_modules/truncate-utf8-bytes": {
|
|
4153
4072
|
"version": "1.0.2",
|
|
@@ -4190,7 +4109,7 @@
|
|
|
4190
4109
|
}
|
|
4191
4110
|
},
|
|
4192
4111
|
"node_modules/tslib": {
|
|
4193
|
-
"version": "2.
|
|
4112
|
+
"version": "2.6.1",
|
|
4194
4113
|
"extraneous": true,
|
|
4195
4114
|
"license": "0BSD"
|
|
4196
4115
|
},
|
|
@@ -4595,7 +4514,7 @@
|
|
|
4595
4514
|
}
|
|
4596
4515
|
},
|
|
4597
4516
|
"node_modules/xpath": {
|
|
4598
|
-
"version": "0.0.
|
|
4517
|
+
"version": "0.0.33",
|
|
4599
4518
|
"license": "MIT",
|
|
4600
4519
|
"engines": {
|
|
4601
4520
|
"node": ">=0.6.0"
|