appium-uiautomator2-driver 2.8.0 → 2.9.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/README.md +19 -5
- package/npm-shrinkwrap.json +163 -260
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -102,7 +102,7 @@ appium:buildToolsVersion | The version of Android build tools to use. By default
|
|
|
102
102
|
appium:skipLogcatCapture | Being set to `true` disables automatic logcat output collection during the test run. `false` by default
|
|
103
103
|
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
|
|
104
104
|
appium:ignoreHiddenApiPolicyError | Being set to `true` ignores a failure while changing hidden API access policies. Could be useful on some devices, where access to these policies has been locked by its vendor. `false` by default.
|
|
105
|
-
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`).
|
|
105
|
+
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`). Termination of a mock location provider application resets the mocked location data.
|
|
106
106
|
appium:logcatFormat | The log print format, where `format` is one of: `brief` `process` `tag` `thread` `raw` `time` `threadtime` `long`. `threadtime` is the default value.
|
|
107
107
|
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'.
|
|
108
108
|
appium:allowDelayAdb | Being set to `false` prevents emulator to use `-delay-adb` feature to detect its startup. See https://github.com/appium/appium/issues/14773 for more details.
|
|
@@ -720,14 +720,19 @@ True is the app has been found on the device and successfully removed. Otherwise
|
|
|
720
720
|
|
|
721
721
|
### mobile: terminateApp
|
|
722
722
|
|
|
723
|
-
Terminates the app
|
|
723
|
+
Terminates the app and waits until the app is terminated up to the given timeout
|
|
724
|
+
by checking the app state to ensure if the app process is actually stopped.
|
|
725
|
+
|
|
726
|
+
The app state check can be skipped if the given timeout is lower or equal to zero since UIAutomator driver 2.9.0.
|
|
727
|
+
The skip helps when you want to terminate the app process but do not want to check the process existence
|
|
728
|
+
because the app under test may, for example, restart it automatically.
|
|
724
729
|
|
|
725
730
|
#### Arguments
|
|
726
731
|
|
|
727
732
|
Name | Type | Required | Description | Example
|
|
728
733
|
--- | --- | --- | --- | ---
|
|
729
734
|
appId | string | yes | The identifier of the application package to be terminated | `my.app.id`
|
|
730
|
-
timeout | number | no | The count of milliseconds to wait until the app is terminated. 500ms by default. | 1500
|
|
735
|
+
timeout | number | no | The count of milliseconds to wait until the app is terminated. 500ms by default. | 1500, 0
|
|
731
736
|
|
|
732
737
|
#### Returned Result
|
|
733
738
|
|
|
@@ -1209,7 +1214,7 @@ happens. Add a timer and wait for a couple of seconds before giving up on the el
|
|
|
1209
1214
|
still fails after the timeout and your non-xpath locator is used then, most likely, it contains a typo, or the
|
|
1210
1215
|
destination element is not present. There is not much that could be done in UIA2 to change/influence that, since it passes such lookup calls directly to Google's UiAutomator framework.
|
|
1211
1216
|
|
|
1212
|
-
In case of
|
|
1217
|
+
In case of _xpath_ locators you could try to change values of the following settings:
|
|
1213
1218
|
|
|
1214
1219
|
1. [allowInvisibleElements](#settings-api)
|
|
1215
1220
|
2. [ignoreUnimportantViews](#settings-api)
|
|
@@ -1224,6 +1229,12 @@ that are normally hidden, because of their unimportance.
|
|
|
1224
1229
|
|
|
1225
1230
|
The third setting being set to `true` extends the page source by adding the actual content of other windows that are currently present on the device's screen. For example, the on-screen keyboard in Android is not a part of the current app hierarchy, but rather belongs to a separate window.
|
|
1226
1231
|
|
|
1232
|
+
In case of _id_ locators you could try to change the value of the following setting:
|
|
1233
|
+
|
|
1234
|
+
1. [disableIdLocatorAutocompletion](#settings-api)
|
|
1235
|
+
|
|
1236
|
+
The general resources naming convention for Android apps is `<app_id>:id/<resource_name>`. This should guarantee uniqueness of each identifier accross the user interface. Although, this is only a convention and it is still allowed to have various resource names that do not follow it. If you have gotten one of such applications for automated testing then consider assigning `disableIdLocatorAutocompletion` setting value to `true`, so UiAutomator2 driver does not automatically rewrite supplied id values by adding `<app_id>:id/` prefixes to them.
|
|
1237
|
+
|
|
1227
1238
|
> **Warning**
|
|
1228
1239
|
> Default values for settings above have been selected to optimize xpath lookup and page source generation performance.
|
|
1229
1240
|
> Having these settings always different from their default values may sometimes significantly (especially in case of huge accessbility hierarchies) reduce xpath lookup and page source generation speed.
|
|
@@ -1231,6 +1242,10 @@ The third setting being set to `true` extends the page source by adding the actu
|
|
|
1231
1242
|
> **Warning**
|
|
1232
1243
|
> All items above are settings, not capabilities.
|
|
1233
1244
|
|
|
1245
|
+
### ClassCastException: java.util.ArrayList$ListItr cannot be cast to org.eclipse.wst.xml.xpath2.processor
|
|
1246
|
+
|
|
1247
|
+
This exception happens due to a known bug in the [Eclipse's Psychopath](https://wiki.eclipse.org/PsychoPathXPathProcessor) library used by UiAutomator2 driver to support [XPath2](https://www.w3.org/TR/xpath20/) syntax. The issue has been observed while using `following::` or `preceding::` axes in xpath queries. Unfortunately, this library has not been maintained for quite a while, and there is no good open source alternative to it. The only known workaround would be to forcefully switch the driver's XPath processor to the standard Android's Apache Harmony-based XPath1, which does not have this issue (but also does not support XPath2 syntax). See the Appium issue [#16142](https://github.com/appium/appium/issues/16142#issuecomment-1003954166) for more details.
|
|
1248
|
+
|
|
1234
1249
|
|
|
1235
1250
|
## Usage Examples
|
|
1236
1251
|
|
|
@@ -1308,4 +1323,3 @@ Functional tests:
|
|
|
1308
1323
|
```
|
|
1309
1324
|
npm run e2e-test
|
|
1310
1325
|
```
|
|
1311
|
-
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-driver",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.1",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-uiautomator2-driver",
|
|
9
|
-
"version": "2.
|
|
9
|
+
"version": "2.9.1",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@babel/runtime": "^7.0.0",
|
|
13
|
-
"appium-adb": "^9.10.
|
|
14
|
-
"appium-android-driver": "^5.
|
|
13
|
+
"appium-adb": "^9.10.14",
|
|
14
|
+
"appium-android-driver": "^5.6.0",
|
|
15
15
|
"appium-chromedriver": "^5.2.1",
|
|
16
16
|
"appium-uiautomator2-server": "^5.7.0",
|
|
17
17
|
"asyncbox": "^2.3.1",
|
|
@@ -60,25 +60,24 @@
|
|
|
60
60
|
}
|
|
61
61
|
},
|
|
62
62
|
"node_modules/@appium/base-driver": {
|
|
63
|
-
"version": "8.7.
|
|
63
|
+
"version": "8.7.3",
|
|
64
64
|
"extraneous": true,
|
|
65
65
|
"license": "Apache-2.0",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@appium/support": "^2.
|
|
68
|
-
"@babel/runtime": "7.19.0",
|
|
67
|
+
"@appium/support": "^2.61.1",
|
|
69
68
|
"@colors/colors": "1.5.0",
|
|
70
|
-
"@types/async-lock": "1.
|
|
71
|
-
"@types/bluebird": "3.5.
|
|
72
|
-
"@types/express": "4.17.
|
|
69
|
+
"@types/async-lock": "1.3.0",
|
|
70
|
+
"@types/bluebird": "3.5.37",
|
|
71
|
+
"@types/express": "4.17.14",
|
|
73
72
|
"@types/method-override": "0.0.32",
|
|
74
73
|
"@types/serve-favicon": "2.5.3",
|
|
75
74
|
"async-lock": "1.3.2",
|
|
76
75
|
"asyncbox": "2.9.2",
|
|
77
76
|
"axios": "0.27.2",
|
|
78
77
|
"bluebird": "3.7.2",
|
|
79
|
-
"body-parser": "1.20.
|
|
78
|
+
"body-parser": "1.20.1",
|
|
80
79
|
"es6-error": "4.1.1",
|
|
81
|
-
"express": "4.18.
|
|
80
|
+
"express": "4.18.2",
|
|
82
81
|
"http-status-codes": "2.2.0",
|
|
83
82
|
"lodash": "4.17.21",
|
|
84
83
|
"lru-cache": "7.14.0",
|
|
@@ -86,7 +85,7 @@
|
|
|
86
85
|
"morgan": "1.10.0",
|
|
87
86
|
"serve-favicon": "2.5.0",
|
|
88
87
|
"source-map-support": "0.5.21",
|
|
89
|
-
"type-fest": "
|
|
88
|
+
"type-fest": "3.1.0",
|
|
90
89
|
"validate.js": "0.13.1"
|
|
91
90
|
},
|
|
92
91
|
"engines": {
|
|
@@ -94,17 +93,6 @@
|
|
|
94
93
|
"npm": ">=8"
|
|
95
94
|
}
|
|
96
95
|
},
|
|
97
|
-
"node_modules/@appium/base-driver/node_modules/@babel/runtime": {
|
|
98
|
-
"version": "7.19.0",
|
|
99
|
-
"extraneous": true,
|
|
100
|
-
"license": "MIT",
|
|
101
|
-
"dependencies": {
|
|
102
|
-
"regenerator-runtime": "^0.13.4"
|
|
103
|
-
},
|
|
104
|
-
"engines": {
|
|
105
|
-
"node": ">=6.9.0"
|
|
106
|
-
}
|
|
107
|
-
},
|
|
108
96
|
"node_modules/@appium/base-driver/node_modules/axios": {
|
|
109
97
|
"version": "0.27.2",
|
|
110
98
|
"extraneous": true,
|
|
@@ -115,11 +103,11 @@
|
|
|
115
103
|
}
|
|
116
104
|
},
|
|
117
105
|
"node_modules/@appium/base-plugin": {
|
|
118
|
-
"version": "1.10.
|
|
106
|
+
"version": "1.10.5",
|
|
119
107
|
"extraneous": true,
|
|
120
108
|
"license": "Apache-2.0",
|
|
121
109
|
"dependencies": {
|
|
122
|
-
"@appium/support": "^2.
|
|
110
|
+
"@appium/support": "^2.61.1"
|
|
123
111
|
},
|
|
124
112
|
"engines": {
|
|
125
113
|
"node": ">=14",
|
|
@@ -127,50 +115,22 @@
|
|
|
127
115
|
}
|
|
128
116
|
},
|
|
129
117
|
"node_modules/@appium/docutils": {
|
|
130
|
-
"version": "0.0.
|
|
118
|
+
"version": "0.0.13",
|
|
131
119
|
"extraneous": true,
|
|
132
120
|
"license": "Apache-2.0",
|
|
133
121
|
"dependencies": {
|
|
134
|
-
"@appium/support": "^2.
|
|
135
|
-
"@babel/runtime": "7.19.0",
|
|
122
|
+
"@appium/support": "^2.61.1",
|
|
136
123
|
"docdash": "1.2.0",
|
|
137
124
|
"jsdoc": "3.6.11",
|
|
138
|
-
"jsdoc-plugin-typescript": "2.
|
|
125
|
+
"jsdoc-plugin-typescript": "2.2.0",
|
|
139
126
|
"source-map-support": "0.5.21",
|
|
140
|
-
"teen_process": "
|
|
127
|
+
"teen_process": "2.0.2"
|
|
141
128
|
},
|
|
142
129
|
"engines": {
|
|
143
130
|
"node": ">=14",
|
|
144
131
|
"npm": ">=8"
|
|
145
132
|
}
|
|
146
133
|
},
|
|
147
|
-
"node_modules/@appium/docutils/node_modules/@babel/runtime": {
|
|
148
|
-
"version": "7.19.0",
|
|
149
|
-
"extraneous": true,
|
|
150
|
-
"license": "MIT",
|
|
151
|
-
"dependencies": {
|
|
152
|
-
"regenerator-runtime": "^0.13.4"
|
|
153
|
-
},
|
|
154
|
-
"engines": {
|
|
155
|
-
"node": ">=6.9.0"
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
159
|
-
"version": "1.16.0",
|
|
160
|
-
"engines": [
|
|
161
|
-
"node"
|
|
162
|
-
],
|
|
163
|
-
"extraneous": true,
|
|
164
|
-
"license": "Apache-2.0",
|
|
165
|
-
"dependencies": {
|
|
166
|
-
"@babel/runtime": "^7.0.0",
|
|
167
|
-
"bluebird": "^3.5.1",
|
|
168
|
-
"lodash": "^4.17.4",
|
|
169
|
-
"shell-quote": "^1.4.3",
|
|
170
|
-
"source-map-support": "^0.5.3",
|
|
171
|
-
"which": "^2.0.2"
|
|
172
|
-
}
|
|
173
|
-
},
|
|
174
134
|
"node_modules/@appium/schema": {
|
|
175
135
|
"version": "0.0.9",
|
|
176
136
|
"license": "Apache-2.0",
|
|
@@ -185,16 +145,15 @@
|
|
|
185
145
|
}
|
|
186
146
|
},
|
|
187
147
|
"node_modules/@appium/support": {
|
|
188
|
-
"version": "2.
|
|
148
|
+
"version": "2.61.1",
|
|
189
149
|
"license": "Apache-2.0",
|
|
190
150
|
"dependencies": {
|
|
191
|
-
"@appium/types": "^0.
|
|
192
|
-
"@babel/runtime": "7.19.0",
|
|
151
|
+
"@appium/types": "^0.5.0",
|
|
193
152
|
"@colors/colors": "1.5.0",
|
|
194
153
|
"@types/archiver": "5.3.1",
|
|
195
154
|
"@types/base64-stream": "1.0.2",
|
|
196
155
|
"@types/find-root": "1.1.2",
|
|
197
|
-
"@types/glob": "
|
|
156
|
+
"@types/glob": "8.0.0",
|
|
198
157
|
"@types/jsftp": "2.1.2",
|
|
199
158
|
"@types/klaw": "3.0.3",
|
|
200
159
|
"@types/lockfile": "1.0.2",
|
|
@@ -218,7 +177,7 @@
|
|
|
218
177
|
"form-data": "4.0.0",
|
|
219
178
|
"get-stream": "6.0.1",
|
|
220
179
|
"glob": "8.0.3",
|
|
221
|
-
"jimp": "0.16.
|
|
180
|
+
"jimp": "0.16.2",
|
|
222
181
|
"jsftp": "2.1.3",
|
|
223
182
|
"klaw": "3.0.0",
|
|
224
183
|
"lockfile": "1.0.4",
|
|
@@ -237,12 +196,12 @@
|
|
|
237
196
|
"resolve-from": "5.0.0",
|
|
238
197
|
"rimraf": "3.0.2",
|
|
239
198
|
"sanitize-filename": "1.6.3",
|
|
240
|
-
"semver": "7.3.
|
|
241
|
-
"shell-quote": "1.7.
|
|
199
|
+
"semver": "7.3.8",
|
|
200
|
+
"shell-quote": "1.7.4",
|
|
242
201
|
"source-map-support": "0.5.21",
|
|
243
202
|
"supports-color": "8.1.1",
|
|
244
|
-
"teen_process": "
|
|
245
|
-
"type-fest": "
|
|
203
|
+
"teen_process": "2.0.2",
|
|
204
|
+
"type-fest": "3.1.0",
|
|
246
205
|
"uuid": "8.3.2",
|
|
247
206
|
"which": "2.0.2",
|
|
248
207
|
"yauzl": "2.10.0"
|
|
@@ -252,16 +211,6 @@
|
|
|
252
211
|
"npm": ">=8"
|
|
253
212
|
}
|
|
254
213
|
},
|
|
255
|
-
"node_modules/@appium/support/node_modules/@babel/runtime": {
|
|
256
|
-
"version": "7.19.0",
|
|
257
|
-
"license": "MIT",
|
|
258
|
-
"dependencies": {
|
|
259
|
-
"regenerator-runtime": "^0.13.4"
|
|
260
|
-
},
|
|
261
|
-
"engines": {
|
|
262
|
-
"node": ">=6.9.0"
|
|
263
|
-
}
|
|
264
|
-
},
|
|
265
214
|
"node_modules/@appium/support/node_modules/axios": {
|
|
266
215
|
"version": "0.27.2",
|
|
267
216
|
"license": "MIT",
|
|
@@ -270,31 +219,16 @@
|
|
|
270
219
|
"form-data": "^4.0.0"
|
|
271
220
|
}
|
|
272
221
|
},
|
|
273
|
-
"node_modules/@appium/support/node_modules/teen_process": {
|
|
274
|
-
"version": "1.16.0",
|
|
275
|
-
"engines": [
|
|
276
|
-
"node"
|
|
277
|
-
],
|
|
278
|
-
"license": "Apache-2.0",
|
|
279
|
-
"dependencies": {
|
|
280
|
-
"@babel/runtime": "^7.0.0",
|
|
281
|
-
"bluebird": "^3.5.1",
|
|
282
|
-
"lodash": "^4.17.4",
|
|
283
|
-
"shell-quote": "^1.4.3",
|
|
284
|
-
"source-map-support": "^0.5.3",
|
|
285
|
-
"which": "^2.0.2"
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
222
|
"node_modules/@appium/types": {
|
|
289
|
-
"version": "0.
|
|
223
|
+
"version": "0.5.0",
|
|
290
224
|
"license": "Apache-2.0",
|
|
291
225
|
"dependencies": {
|
|
292
226
|
"@appium/schema": "^0.0.9",
|
|
293
|
-
"@types/express": "4.17.
|
|
227
|
+
"@types/express": "4.17.14",
|
|
294
228
|
"@types/npmlog": "4.1.4",
|
|
295
229
|
"@types/ws": "8.5.3",
|
|
296
|
-
"@wdio/types": "7.
|
|
297
|
-
"type-fest": "
|
|
230
|
+
"@wdio/types": "7.25.1",
|
|
231
|
+
"type-fest": "3.1.0"
|
|
298
232
|
},
|
|
299
233
|
"engines": {
|
|
300
234
|
"node": ">=14",
|
|
@@ -331,7 +265,7 @@
|
|
|
331
265
|
}
|
|
332
266
|
},
|
|
333
267
|
"node_modules/@babel/parser": {
|
|
334
|
-
"version": "7.
|
|
268
|
+
"version": "7.20.0",
|
|
335
269
|
"extraneous": true,
|
|
336
270
|
"license": "MIT",
|
|
337
271
|
"bin": {
|
|
@@ -342,10 +276,10 @@
|
|
|
342
276
|
}
|
|
343
277
|
},
|
|
344
278
|
"node_modules/@babel/runtime": {
|
|
345
|
-
"version": "7.
|
|
279
|
+
"version": "7.20.0",
|
|
346
280
|
"license": "MIT",
|
|
347
281
|
"dependencies": {
|
|
348
|
-
"regenerator-runtime": "^0.13.
|
|
282
|
+
"regenerator-runtime": "^0.13.10"
|
|
349
283
|
},
|
|
350
284
|
"engines": {
|
|
351
285
|
"node": ">=6.9.0"
|
|
@@ -766,7 +700,7 @@
|
|
|
766
700
|
}
|
|
767
701
|
},
|
|
768
702
|
"node_modules/@sidvind/better-ajv-errors": {
|
|
769
|
-
"version": "2.
|
|
703
|
+
"version": "2.1.0",
|
|
770
704
|
"extraneous": true,
|
|
771
705
|
"license": "Apache-2.0",
|
|
772
706
|
"dependencies": {
|
|
@@ -869,7 +803,7 @@
|
|
|
869
803
|
"license": "MIT"
|
|
870
804
|
},
|
|
871
805
|
"node_modules/@types/async-lock": {
|
|
872
|
-
"version": "1.
|
|
806
|
+
"version": "1.3.0",
|
|
873
807
|
"extraneous": true,
|
|
874
808
|
"license": "MIT"
|
|
875
809
|
},
|
|
@@ -881,7 +815,7 @@
|
|
|
881
815
|
}
|
|
882
816
|
},
|
|
883
817
|
"node_modules/@types/bluebird": {
|
|
884
|
-
"version": "3.5.
|
|
818
|
+
"version": "3.5.37",
|
|
885
819
|
"extraneous": true,
|
|
886
820
|
"license": "MIT"
|
|
887
821
|
},
|
|
@@ -911,7 +845,7 @@
|
|
|
911
845
|
}
|
|
912
846
|
},
|
|
913
847
|
"node_modules/@types/express": {
|
|
914
|
-
"version": "4.17.
|
|
848
|
+
"version": "4.17.14",
|
|
915
849
|
"license": "MIT",
|
|
916
850
|
"dependencies": {
|
|
917
851
|
"@types/body-parser": "*",
|
|
@@ -939,7 +873,7 @@
|
|
|
939
873
|
"license": "MIT"
|
|
940
874
|
},
|
|
941
875
|
"node_modules/@types/glob": {
|
|
942
|
-
"version": "
|
|
876
|
+
"version": "8.0.0",
|
|
943
877
|
"license": "MIT",
|
|
944
878
|
"dependencies": {
|
|
945
879
|
"@types/minimatch": "*",
|
|
@@ -962,10 +896,11 @@
|
|
|
962
896
|
"license": "MIT"
|
|
963
897
|
},
|
|
964
898
|
"node_modules/@types/keyv": {
|
|
965
|
-
"version": "
|
|
899
|
+
"version": "4.2.0",
|
|
900
|
+
"deprecated": "This is a stub types definition. keyv provides its own type definitions, so you do not need this installed.",
|
|
966
901
|
"license": "MIT",
|
|
967
902
|
"dependencies": {
|
|
968
|
-
"
|
|
903
|
+
"keyv": "*"
|
|
969
904
|
}
|
|
970
905
|
},
|
|
971
906
|
"node_modules/@types/klaw": {
|
|
@@ -1026,7 +961,7 @@
|
|
|
1026
961
|
}
|
|
1027
962
|
},
|
|
1028
963
|
"node_modules/@types/node": {
|
|
1029
|
-
"version": "18.
|
|
964
|
+
"version": "18.11.7",
|
|
1030
965
|
"license": "MIT"
|
|
1031
966
|
},
|
|
1032
967
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -1123,7 +1058,7 @@
|
|
|
1123
1058
|
}
|
|
1124
1059
|
},
|
|
1125
1060
|
"node_modules/@wdio/types": {
|
|
1126
|
-
"version": "7.
|
|
1061
|
+
"version": "7.25.1",
|
|
1127
1062
|
"license": "MIT",
|
|
1128
1063
|
"dependencies": {
|
|
1129
1064
|
"@types/node": "^18.0.0",
|
|
@@ -1232,7 +1167,7 @@
|
|
|
1232
1167
|
"license": "MIT"
|
|
1233
1168
|
},
|
|
1234
1169
|
"node_modules/appium-adb": {
|
|
1235
|
-
"version": "9.10.
|
|
1170
|
+
"version": "9.10.14",
|
|
1236
1171
|
"license": "Apache-2.0",
|
|
1237
1172
|
"dependencies": {
|
|
1238
1173
|
"@appium/support": "^2.60.0",
|
|
@@ -1255,7 +1190,7 @@
|
|
|
1255
1190
|
}
|
|
1256
1191
|
},
|
|
1257
1192
|
"node_modules/appium-android-driver": {
|
|
1258
|
-
"version": "5.
|
|
1193
|
+
"version": "5.7.0",
|
|
1259
1194
|
"license": "Apache-2.0",
|
|
1260
1195
|
"dependencies": {
|
|
1261
1196
|
"@babel/runtime": "^7.0.0",
|
|
@@ -1287,7 +1222,7 @@
|
|
|
1287
1222
|
}
|
|
1288
1223
|
},
|
|
1289
1224
|
"node_modules/appium-chromedriver": {
|
|
1290
|
-
"version": "5.2.
|
|
1225
|
+
"version": "5.2.5",
|
|
1291
1226
|
"hasInstallScript": true,
|
|
1292
1227
|
"license": "Apache-2.0",
|
|
1293
1228
|
"dependencies": {
|
|
@@ -1313,7 +1248,7 @@
|
|
|
1313
1248
|
}
|
|
1314
1249
|
},
|
|
1315
1250
|
"node_modules/appium-uiautomator2-server": {
|
|
1316
|
-
"version": "5.7.
|
|
1251
|
+
"version": "5.7.1",
|
|
1317
1252
|
"license": "Apache-2.0",
|
|
1318
1253
|
"engines": {
|
|
1319
1254
|
"node": ">=14",
|
|
@@ -1377,6 +1312,10 @@
|
|
|
1377
1312
|
"url": "https://github.com/sponsors/isaacs"
|
|
1378
1313
|
}
|
|
1379
1314
|
},
|
|
1315
|
+
"node_modules/archiver-utils/node_modules/isarray": {
|
|
1316
|
+
"version": "1.0.0",
|
|
1317
|
+
"license": "MIT"
|
|
1318
|
+
},
|
|
1380
1319
|
"node_modules/archiver-utils/node_modules/readable-stream": {
|
|
1381
1320
|
"version": "2.3.7",
|
|
1382
1321
|
"license": "MIT",
|
|
@@ -1449,7 +1388,7 @@
|
|
|
1449
1388
|
"license": "MIT"
|
|
1450
1389
|
},
|
|
1451
1390
|
"node_modules/axios": {
|
|
1452
|
-
"version": "1.1.
|
|
1391
|
+
"version": "1.1.3",
|
|
1453
1392
|
"license": "MIT",
|
|
1454
1393
|
"dependencies": {
|
|
1455
1394
|
"follow-redirects": "^1.15.0",
|
|
@@ -1524,7 +1463,7 @@
|
|
|
1524
1463
|
"license": "MIT"
|
|
1525
1464
|
},
|
|
1526
1465
|
"node_modules/body-parser": {
|
|
1527
|
-
"version": "1.20.
|
|
1466
|
+
"version": "1.20.1",
|
|
1528
1467
|
"extraneous": true,
|
|
1529
1468
|
"license": "MIT",
|
|
1530
1469
|
"dependencies": {
|
|
@@ -1536,7 +1475,7 @@
|
|
|
1536
1475
|
"http-errors": "2.0.0",
|
|
1537
1476
|
"iconv-lite": "0.4.24",
|
|
1538
1477
|
"on-finished": "2.4.1",
|
|
1539
|
-
"qs": "6.
|
|
1478
|
+
"qs": "6.11.0",
|
|
1540
1479
|
"raw-body": "2.5.1",
|
|
1541
1480
|
"type-is": "~1.6.18",
|
|
1542
1481
|
"unpipe": "1.0.0"
|
|
@@ -2159,13 +2098,13 @@
|
|
|
2159
2098
|
"version": "0.1.12"
|
|
2160
2099
|
},
|
|
2161
2100
|
"node_modules/express": {
|
|
2162
|
-
"version": "4.18.
|
|
2101
|
+
"version": "4.18.2",
|
|
2163
2102
|
"extraneous": true,
|
|
2164
2103
|
"license": "MIT",
|
|
2165
2104
|
"dependencies": {
|
|
2166
2105
|
"accepts": "~1.3.8",
|
|
2167
2106
|
"array-flatten": "1.1.1",
|
|
2168
|
-
"body-parser": "1.20.
|
|
2107
|
+
"body-parser": "1.20.1",
|
|
2169
2108
|
"content-disposition": "0.5.4",
|
|
2170
2109
|
"content-type": "~1.0.4",
|
|
2171
2110
|
"cookie": "0.5.0",
|
|
@@ -2184,7 +2123,7 @@
|
|
|
2184
2123
|
"parseurl": "~1.3.3",
|
|
2185
2124
|
"path-to-regexp": "0.1.7",
|
|
2186
2125
|
"proxy-addr": "~2.0.7",
|
|
2187
|
-
"qs": "6.
|
|
2126
|
+
"qs": "6.11.0",
|
|
2188
2127
|
"range-parser": "~1.2.1",
|
|
2189
2128
|
"safe-buffer": "5.2.1",
|
|
2190
2129
|
"send": "0.18.0",
|
|
@@ -2737,7 +2676,7 @@
|
|
|
2737
2676
|
}
|
|
2738
2677
|
},
|
|
2739
2678
|
"node_modules/io.appium.settings": {
|
|
2740
|
-
"version": "4.2.
|
|
2679
|
+
"version": "4.2.2",
|
|
2741
2680
|
"license": "Apache-2.0",
|
|
2742
2681
|
"engines": {
|
|
2743
2682
|
"node": ">=14",
|
|
@@ -2794,7 +2733,7 @@
|
|
|
2794
2733
|
}
|
|
2795
2734
|
},
|
|
2796
2735
|
"node_modules/is-core-module": {
|
|
2797
|
-
"version": "2.
|
|
2736
|
+
"version": "2.11.0",
|
|
2798
2737
|
"license": "MIT",
|
|
2799
2738
|
"dependencies": {
|
|
2800
2739
|
"has": "^1.0.3"
|
|
@@ -2947,22 +2886,18 @@
|
|
|
2947
2886
|
"url": "https://github.com/sponsors/ljharb"
|
|
2948
2887
|
}
|
|
2949
2888
|
},
|
|
2950
|
-
"node_modules/isarray": {
|
|
2951
|
-
"version": "1.0.0",
|
|
2952
|
-
"license": "MIT"
|
|
2953
|
-
},
|
|
2954
2889
|
"node_modules/isexe": {
|
|
2955
2890
|
"version": "2.0.0",
|
|
2956
2891
|
"license": "ISC"
|
|
2957
2892
|
},
|
|
2958
2893
|
"node_modules/jimp": {
|
|
2959
|
-
"version": "0.16.
|
|
2894
|
+
"version": "0.16.2",
|
|
2960
2895
|
"license": "MIT",
|
|
2961
2896
|
"dependencies": {
|
|
2962
2897
|
"@babel/runtime": "^7.7.2",
|
|
2963
|
-
"@jimp/custom": "^0.16.
|
|
2964
|
-
"@jimp/plugins": "^0.16.
|
|
2965
|
-
"@jimp/types": "^0.16.
|
|
2898
|
+
"@jimp/custom": "^0.16.2",
|
|
2899
|
+
"@jimp/plugins": "^0.16.2",
|
|
2900
|
+
"@jimp/types": "^0.16.2",
|
|
2966
2901
|
"regenerator-runtime": "^0.13.3"
|
|
2967
2902
|
}
|
|
2968
2903
|
},
|
|
@@ -3011,14 +2946,11 @@
|
|
|
3011
2946
|
}
|
|
3012
2947
|
},
|
|
3013
2948
|
"node_modules/jsdoc-plugin-typescript": {
|
|
3014
|
-
"version": "2.
|
|
2949
|
+
"version": "2.2.0",
|
|
3015
2950
|
"extraneous": true,
|
|
3016
2951
|
"license": "BSD-2-Clause",
|
|
3017
2952
|
"dependencies": {
|
|
3018
2953
|
"string.prototype.matchall": "^4.0.0"
|
|
3019
|
-
},
|
|
3020
|
-
"peerDependencies": {
|
|
3021
|
-
"jsdoc": ">=3.6.0"
|
|
3022
2954
|
}
|
|
3023
2955
|
},
|
|
3024
2956
|
"node_modules/jsdoc/node_modules/escape-string-regexp": {
|
|
@@ -3108,6 +3040,10 @@
|
|
|
3108
3040
|
"node": ">= 0.6.3"
|
|
3109
3041
|
}
|
|
3110
3042
|
},
|
|
3043
|
+
"node_modules/lazystream/node_modules/isarray": {
|
|
3044
|
+
"version": "1.0.0",
|
|
3045
|
+
"license": "MIT"
|
|
3046
|
+
},
|
|
3111
3047
|
"node_modules/lazystream/node_modules/readable-stream": {
|
|
3112
3048
|
"version": "2.3.7",
|
|
3113
3049
|
"license": "MIT",
|
|
@@ -3487,7 +3423,7 @@
|
|
|
3487
3423
|
}
|
|
3488
3424
|
},
|
|
3489
3425
|
"node_modules/moment-timezone": {
|
|
3490
|
-
"version": "0.5.
|
|
3426
|
+
"version": "0.5.38",
|
|
3491
3427
|
"license": "MIT",
|
|
3492
3428
|
"dependencies": {
|
|
3493
3429
|
"moment": ">= 2.9.0"
|
|
@@ -4090,7 +4026,7 @@
|
|
|
4090
4026
|
}
|
|
4091
4027
|
},
|
|
4092
4028
|
"node_modules/qs": {
|
|
4093
|
-
"version": "6.
|
|
4029
|
+
"version": "6.11.0",
|
|
4094
4030
|
"extraneous": true,
|
|
4095
4031
|
"license": "BSD-3-Clause",
|
|
4096
4032
|
"dependencies": {
|
|
@@ -4192,7 +4128,7 @@
|
|
|
4192
4128
|
}
|
|
4193
4129
|
},
|
|
4194
4130
|
"node_modules/regenerator-runtime": {
|
|
4195
|
-
"version": "0.13.
|
|
4131
|
+
"version": "0.13.10",
|
|
4196
4132
|
"license": "MIT"
|
|
4197
4133
|
},
|
|
4198
4134
|
"node_modules/regexp.prototype.flags": {
|
|
@@ -4338,7 +4274,7 @@
|
|
|
4338
4274
|
}
|
|
4339
4275
|
},
|
|
4340
4276
|
"node_modules/safe-stable-stringify": {
|
|
4341
|
-
"version": "2.4.
|
|
4277
|
+
"version": "2.4.1",
|
|
4342
4278
|
"extraneous": true,
|
|
4343
4279
|
"license": "MIT",
|
|
4344
4280
|
"engines": {
|
|
@@ -4362,7 +4298,7 @@
|
|
|
4362
4298
|
"license": "ISC"
|
|
4363
4299
|
},
|
|
4364
4300
|
"node_modules/semver": {
|
|
4365
|
-
"version": "7.3.
|
|
4301
|
+
"version": "7.3.8",
|
|
4366
4302
|
"license": "ISC",
|
|
4367
4303
|
"dependencies": {
|
|
4368
4304
|
"lru-cache": "^6.0.0"
|
|
@@ -4508,8 +4444,11 @@
|
|
|
4508
4444
|
}
|
|
4509
4445
|
},
|
|
4510
4446
|
"node_modules/shell-quote": {
|
|
4511
|
-
"version": "1.7.
|
|
4512
|
-
"license": "MIT"
|
|
4447
|
+
"version": "1.7.4",
|
|
4448
|
+
"license": "MIT",
|
|
4449
|
+
"funding": {
|
|
4450
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
4451
|
+
}
|
|
4513
4452
|
},
|
|
4514
4453
|
"node_modules/side-channel": {
|
|
4515
4454
|
"version": "1.0.4",
|
|
@@ -4750,6 +4689,10 @@
|
|
|
4750
4689
|
"node": ">=6.9.0"
|
|
4751
4690
|
}
|
|
4752
4691
|
},
|
|
4692
|
+
"node_modules/teen_process/node_modules/shell-quote": {
|
|
4693
|
+
"version": "1.7.3",
|
|
4694
|
+
"license": "MIT"
|
|
4695
|
+
},
|
|
4753
4696
|
"node_modules/text-hex": {
|
|
4754
4697
|
"version": "1.0.0",
|
|
4755
4698
|
"extraneous": true,
|
|
@@ -4791,10 +4734,10 @@
|
|
|
4791
4734
|
}
|
|
4792
4735
|
},
|
|
4793
4736
|
"node_modules/type-fest": {
|
|
4794
|
-
"version": "
|
|
4737
|
+
"version": "3.1.0",
|
|
4795
4738
|
"license": "(MIT OR CC0-1.0)",
|
|
4796
4739
|
"engines": {
|
|
4797
|
-
"node": ">=
|
|
4740
|
+
"node": ">=14.16"
|
|
4798
4741
|
},
|
|
4799
4742
|
"funding": {
|
|
4800
4743
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
@@ -4990,10 +4933,11 @@
|
|
|
4990
4933
|
}
|
|
4991
4934
|
},
|
|
4992
4935
|
"node_modules/winston": {
|
|
4993
|
-
"version": "3.8.
|
|
4936
|
+
"version": "3.8.2",
|
|
4994
4937
|
"extraneous": true,
|
|
4995
4938
|
"license": "MIT",
|
|
4996
4939
|
"dependencies": {
|
|
4940
|
+
"@colors/colors": "1.5.0",
|
|
4997
4941
|
"@dabh/diagnostics": "^2.0.2",
|
|
4998
4942
|
"async": "^3.2.3",
|
|
4999
4943
|
"is-stream": "^2.0.0",
|
|
@@ -5099,7 +5043,7 @@
|
|
|
5099
5043
|
"license": "ISC"
|
|
5100
5044
|
},
|
|
5101
5045
|
"node_modules/ws": {
|
|
5102
|
-
"version": "8.
|
|
5046
|
+
"version": "8.10.0",
|
|
5103
5047
|
"license": "MIT",
|
|
5104
5048
|
"engines": {
|
|
5105
5049
|
"node": ">=10.0.0"
|
|
@@ -5180,7 +5124,7 @@
|
|
|
5180
5124
|
"license": "ISC"
|
|
5181
5125
|
},
|
|
5182
5126
|
"node_modules/yaml": {
|
|
5183
|
-
"version": "2.1.
|
|
5127
|
+
"version": "2.1.3",
|
|
5184
5128
|
"extraneous": true,
|
|
5185
5129
|
"license": "ISC",
|
|
5186
5130
|
"engines": {
|
|
@@ -5220,24 +5164,23 @@
|
|
|
5220
5164
|
},
|
|
5221
5165
|
"dependencies": {
|
|
5222
5166
|
"@appium/base-driver": {
|
|
5223
|
-
"version": "8.7.
|
|
5167
|
+
"version": "8.7.3",
|
|
5224
5168
|
"extraneous": true,
|
|
5225
5169
|
"requires": {
|
|
5226
|
-
"@appium/support": "^2.
|
|
5227
|
-
"@babel/runtime": "7.19.0",
|
|
5170
|
+
"@appium/support": "^2.61.1",
|
|
5228
5171
|
"@colors/colors": "1.5.0",
|
|
5229
|
-
"@types/async-lock": "1.
|
|
5230
|
-
"@types/bluebird": "3.5.
|
|
5231
|
-
"@types/express": "4.17.
|
|
5172
|
+
"@types/async-lock": "1.3.0",
|
|
5173
|
+
"@types/bluebird": "3.5.37",
|
|
5174
|
+
"@types/express": "4.17.14",
|
|
5232
5175
|
"@types/method-override": "0.0.32",
|
|
5233
5176
|
"@types/serve-favicon": "2.5.3",
|
|
5234
5177
|
"async-lock": "1.3.2",
|
|
5235
5178
|
"asyncbox": "2.9.2",
|
|
5236
5179
|
"axios": "0.27.2",
|
|
5237
5180
|
"bluebird": "3.7.2",
|
|
5238
|
-
"body-parser": "1.20.
|
|
5181
|
+
"body-parser": "1.20.1",
|
|
5239
5182
|
"es6-error": "4.1.1",
|
|
5240
|
-
"express": "4.18.
|
|
5183
|
+
"express": "4.18.2",
|
|
5241
5184
|
"http-status-codes": "2.2.0",
|
|
5242
5185
|
"lodash": "4.17.21",
|
|
5243
5186
|
"lru-cache": "7.14.0",
|
|
@@ -5245,17 +5188,10 @@
|
|
|
5245
5188
|
"morgan": "1.10.0",
|
|
5246
5189
|
"serve-favicon": "2.5.0",
|
|
5247
5190
|
"source-map-support": "0.5.21",
|
|
5248
|
-
"type-fest": "
|
|
5191
|
+
"type-fest": "3.1.0",
|
|
5249
5192
|
"validate.js": "0.13.1"
|
|
5250
5193
|
},
|
|
5251
5194
|
"dependencies": {
|
|
5252
|
-
"@babel/runtime": {
|
|
5253
|
-
"version": "7.19.0",
|
|
5254
|
-
"extraneous": true,
|
|
5255
|
-
"requires": {
|
|
5256
|
-
"regenerator-runtime": "^0.13.4"
|
|
5257
|
-
}
|
|
5258
|
-
},
|
|
5259
5195
|
"axios": {
|
|
5260
5196
|
"version": "0.27.2",
|
|
5261
5197
|
"extraneous": true,
|
|
@@ -5267,44 +5203,22 @@
|
|
|
5267
5203
|
}
|
|
5268
5204
|
},
|
|
5269
5205
|
"@appium/base-plugin": {
|
|
5270
|
-
"version": "1.10.
|
|
5206
|
+
"version": "1.10.5",
|
|
5271
5207
|
"extraneous": true,
|
|
5272
5208
|
"requires": {
|
|
5273
|
-
"@appium/support": "^2.
|
|
5209
|
+
"@appium/support": "^2.61.1"
|
|
5274
5210
|
}
|
|
5275
5211
|
},
|
|
5276
5212
|
"@appium/docutils": {
|
|
5277
|
-
"version": "0.0.
|
|
5213
|
+
"version": "0.0.13",
|
|
5278
5214
|
"extraneous": true,
|
|
5279
5215
|
"requires": {
|
|
5280
|
-
"@appium/support": "^2.
|
|
5281
|
-
"@babel/runtime": "7.19.0",
|
|
5216
|
+
"@appium/support": "^2.61.1",
|
|
5282
5217
|
"docdash": "1.2.0",
|
|
5283
5218
|
"jsdoc": "3.6.11",
|
|
5284
|
-
"jsdoc-plugin-typescript": "2.
|
|
5219
|
+
"jsdoc-plugin-typescript": "2.2.0",
|
|
5285
5220
|
"source-map-support": "0.5.21",
|
|
5286
|
-
"teen_process": "
|
|
5287
|
-
},
|
|
5288
|
-
"dependencies": {
|
|
5289
|
-
"@babel/runtime": {
|
|
5290
|
-
"version": "7.19.0",
|
|
5291
|
-
"extraneous": true,
|
|
5292
|
-
"requires": {
|
|
5293
|
-
"regenerator-runtime": "^0.13.4"
|
|
5294
|
-
}
|
|
5295
|
-
},
|
|
5296
|
-
"teen_process": {
|
|
5297
|
-
"version": "1.16.0",
|
|
5298
|
-
"extraneous": true,
|
|
5299
|
-
"requires": {
|
|
5300
|
-
"@babel/runtime": "^7.0.0",
|
|
5301
|
-
"bluebird": "^3.5.1",
|
|
5302
|
-
"lodash": "^4.17.4",
|
|
5303
|
-
"shell-quote": "^1.4.3",
|
|
5304
|
-
"source-map-support": "^0.5.3",
|
|
5305
|
-
"which": "^2.0.2"
|
|
5306
|
-
}
|
|
5307
|
-
}
|
|
5221
|
+
"teen_process": "2.0.2"
|
|
5308
5222
|
}
|
|
5309
5223
|
},
|
|
5310
5224
|
"@appium/schema": {
|
|
@@ -5316,15 +5230,14 @@
|
|
|
5316
5230
|
}
|
|
5317
5231
|
},
|
|
5318
5232
|
"@appium/support": {
|
|
5319
|
-
"version": "2.
|
|
5233
|
+
"version": "2.61.1",
|
|
5320
5234
|
"requires": {
|
|
5321
|
-
"@appium/types": "^0.
|
|
5322
|
-
"@babel/runtime": "7.19.0",
|
|
5235
|
+
"@appium/types": "^0.5.0",
|
|
5323
5236
|
"@colors/colors": "1.5.0",
|
|
5324
5237
|
"@types/archiver": "5.3.1",
|
|
5325
5238
|
"@types/base64-stream": "1.0.2",
|
|
5326
5239
|
"@types/find-root": "1.1.2",
|
|
5327
|
-
"@types/glob": "
|
|
5240
|
+
"@types/glob": "8.0.0",
|
|
5328
5241
|
"@types/jsftp": "2.1.2",
|
|
5329
5242
|
"@types/klaw": "3.0.3",
|
|
5330
5243
|
"@types/lockfile": "1.0.2",
|
|
@@ -5348,7 +5261,7 @@
|
|
|
5348
5261
|
"form-data": "4.0.0",
|
|
5349
5262
|
"get-stream": "6.0.1",
|
|
5350
5263
|
"glob": "8.0.3",
|
|
5351
|
-
"jimp": "0.16.
|
|
5264
|
+
"jimp": "0.16.2",
|
|
5352
5265
|
"jsftp": "2.1.3",
|
|
5353
5266
|
"klaw": "3.0.0",
|
|
5354
5267
|
"lockfile": "1.0.4",
|
|
@@ -5367,52 +5280,35 @@
|
|
|
5367
5280
|
"resolve-from": "5.0.0",
|
|
5368
5281
|
"rimraf": "3.0.2",
|
|
5369
5282
|
"sanitize-filename": "1.6.3",
|
|
5370
|
-
"semver": "7.3.
|
|
5371
|
-
"shell-quote": "1.7.
|
|
5283
|
+
"semver": "7.3.8",
|
|
5284
|
+
"shell-quote": "1.7.4",
|
|
5372
5285
|
"source-map-support": "0.5.21",
|
|
5373
5286
|
"supports-color": "8.1.1",
|
|
5374
|
-
"teen_process": "
|
|
5375
|
-
"type-fest": "
|
|
5287
|
+
"teen_process": "2.0.2",
|
|
5288
|
+
"type-fest": "3.1.0",
|
|
5376
5289
|
"uuid": "8.3.2",
|
|
5377
5290
|
"which": "2.0.2",
|
|
5378
5291
|
"yauzl": "2.10.0"
|
|
5379
5292
|
},
|
|
5380
5293
|
"dependencies": {
|
|
5381
|
-
"@babel/runtime": {
|
|
5382
|
-
"version": "7.19.0",
|
|
5383
|
-
"requires": {
|
|
5384
|
-
"regenerator-runtime": "^0.13.4"
|
|
5385
|
-
}
|
|
5386
|
-
},
|
|
5387
5294
|
"axios": {
|
|
5388
5295
|
"version": "0.27.2",
|
|
5389
5296
|
"requires": {
|
|
5390
5297
|
"follow-redirects": "^1.14.9",
|
|
5391
5298
|
"form-data": "^4.0.0"
|
|
5392
5299
|
}
|
|
5393
|
-
},
|
|
5394
|
-
"teen_process": {
|
|
5395
|
-
"version": "1.16.0",
|
|
5396
|
-
"requires": {
|
|
5397
|
-
"@babel/runtime": "^7.0.0",
|
|
5398
|
-
"bluebird": "^3.5.1",
|
|
5399
|
-
"lodash": "^4.17.4",
|
|
5400
|
-
"shell-quote": "^1.4.3",
|
|
5401
|
-
"source-map-support": "^0.5.3",
|
|
5402
|
-
"which": "^2.0.2"
|
|
5403
|
-
}
|
|
5404
5300
|
}
|
|
5405
5301
|
}
|
|
5406
5302
|
},
|
|
5407
5303
|
"@appium/types": {
|
|
5408
|
-
"version": "0.
|
|
5304
|
+
"version": "0.5.0",
|
|
5409
5305
|
"requires": {
|
|
5410
5306
|
"@appium/schema": "^0.0.9",
|
|
5411
|
-
"@types/express": "4.17.
|
|
5307
|
+
"@types/express": "4.17.14",
|
|
5412
5308
|
"@types/npmlog": "4.1.4",
|
|
5413
5309
|
"@types/ws": "8.5.3",
|
|
5414
|
-
"@wdio/types": "7.
|
|
5415
|
-
"type-fest": "
|
|
5310
|
+
"@wdio/types": "7.25.1",
|
|
5311
|
+
"type-fest": "3.1.0"
|
|
5416
5312
|
}
|
|
5417
5313
|
},
|
|
5418
5314
|
"@babel/code-frame": {
|
|
@@ -5433,13 +5329,13 @@
|
|
|
5433
5329
|
}
|
|
5434
5330
|
},
|
|
5435
5331
|
"@babel/parser": {
|
|
5436
|
-
"version": "7.
|
|
5332
|
+
"version": "7.20.0",
|
|
5437
5333
|
"extraneous": true
|
|
5438
5334
|
},
|
|
5439
5335
|
"@babel/runtime": {
|
|
5440
|
-
"version": "7.
|
|
5336
|
+
"version": "7.20.0",
|
|
5441
5337
|
"requires": {
|
|
5442
|
-
"regenerator-runtime": "^0.13.
|
|
5338
|
+
"regenerator-runtime": "^0.13.10"
|
|
5443
5339
|
}
|
|
5444
5340
|
},
|
|
5445
5341
|
"@colors/colors": {
|
|
@@ -5719,7 +5615,7 @@
|
|
|
5719
5615
|
}
|
|
5720
5616
|
},
|
|
5721
5617
|
"@sidvind/better-ajv-errors": {
|
|
5722
|
-
"version": "2.
|
|
5618
|
+
"version": "2.1.0",
|
|
5723
5619
|
"extraneous": true,
|
|
5724
5620
|
"requires": {
|
|
5725
5621
|
"@babel/code-frame": "^7.16.0",
|
|
@@ -5781,7 +5677,7 @@
|
|
|
5781
5677
|
"extraneous": true
|
|
5782
5678
|
},
|
|
5783
5679
|
"@types/async-lock": {
|
|
5784
|
-
"version": "1.
|
|
5680
|
+
"version": "1.3.0",
|
|
5785
5681
|
"extraneous": true
|
|
5786
5682
|
},
|
|
5787
5683
|
"@types/base64-stream": {
|
|
@@ -5791,7 +5687,7 @@
|
|
|
5791
5687
|
}
|
|
5792
5688
|
},
|
|
5793
5689
|
"@types/bluebird": {
|
|
5794
|
-
"version": "3.5.
|
|
5690
|
+
"version": "3.5.37",
|
|
5795
5691
|
"extraneous": true
|
|
5796
5692
|
},
|
|
5797
5693
|
"@types/body-parser": {
|
|
@@ -5817,7 +5713,7 @@
|
|
|
5817
5713
|
}
|
|
5818
5714
|
},
|
|
5819
5715
|
"@types/express": {
|
|
5820
|
-
"version": "4.17.
|
|
5716
|
+
"version": "4.17.14",
|
|
5821
5717
|
"requires": {
|
|
5822
5718
|
"@types/body-parser": "*",
|
|
5823
5719
|
"@types/express-serve-static-core": "^4.17.18",
|
|
@@ -5841,7 +5737,7 @@
|
|
|
5841
5737
|
"version": "1.1.2"
|
|
5842
5738
|
},
|
|
5843
5739
|
"@types/glob": {
|
|
5844
|
-
"version": "
|
|
5740
|
+
"version": "8.0.0",
|
|
5845
5741
|
"requires": {
|
|
5846
5742
|
"@types/minimatch": "*",
|
|
5847
5743
|
"@types/node": "*"
|
|
@@ -5860,9 +5756,9 @@
|
|
|
5860
5756
|
"version": "7.0.11"
|
|
5861
5757
|
},
|
|
5862
5758
|
"@types/keyv": {
|
|
5863
|
-
"version": "
|
|
5759
|
+
"version": "4.2.0",
|
|
5864
5760
|
"requires": {
|
|
5865
|
-
"
|
|
5761
|
+
"keyv": "*"
|
|
5866
5762
|
}
|
|
5867
5763
|
},
|
|
5868
5764
|
"@types/klaw": {
|
|
@@ -5913,7 +5809,7 @@
|
|
|
5913
5809
|
}
|
|
5914
5810
|
},
|
|
5915
5811
|
"@types/node": {
|
|
5916
|
-
"version": "18.
|
|
5812
|
+
"version": "18.11.7"
|
|
5917
5813
|
},
|
|
5918
5814
|
"@types/normalize-package-data": {
|
|
5919
5815
|
"version": "2.4.1"
|
|
@@ -5992,7 +5888,7 @@
|
|
|
5992
5888
|
}
|
|
5993
5889
|
},
|
|
5994
5890
|
"@wdio/types": {
|
|
5995
|
-
"version": "7.
|
|
5891
|
+
"version": "7.25.1",
|
|
5996
5892
|
"requires": {
|
|
5997
5893
|
"@types/node": "^18.0.0",
|
|
5998
5894
|
"got": "^11.8.1"
|
|
@@ -6055,7 +5951,7 @@
|
|
|
6055
5951
|
"version": "1.1.0"
|
|
6056
5952
|
},
|
|
6057
5953
|
"appium-adb": {
|
|
6058
|
-
"version": "9.10.
|
|
5954
|
+
"version": "9.10.14",
|
|
6059
5955
|
"requires": {
|
|
6060
5956
|
"@appium/support": "^2.60.0",
|
|
6061
5957
|
"@babel/runtime": "^7.0.0",
|
|
@@ -6073,7 +5969,7 @@
|
|
|
6073
5969
|
}
|
|
6074
5970
|
},
|
|
6075
5971
|
"appium-android-driver": {
|
|
6076
|
-
"version": "5.
|
|
5972
|
+
"version": "5.7.0",
|
|
6077
5973
|
"requires": {
|
|
6078
5974
|
"@babel/runtime": "^7.0.0",
|
|
6079
5975
|
"appium-adb": "^9.10.9",
|
|
@@ -6097,7 +5993,7 @@
|
|
|
6097
5993
|
}
|
|
6098
5994
|
},
|
|
6099
5995
|
"appium-chromedriver": {
|
|
6100
|
-
"version": "5.2.
|
|
5996
|
+
"version": "5.2.5",
|
|
6101
5997
|
"requires": {
|
|
6102
5998
|
"@babel/runtime": "^7.0.0",
|
|
6103
5999
|
"@xmldom/xmldom": "^0.x",
|
|
@@ -6114,7 +6010,7 @@
|
|
|
6114
6010
|
}
|
|
6115
6011
|
},
|
|
6116
6012
|
"appium-uiautomator2-server": {
|
|
6117
|
-
"version": "5.7.
|
|
6013
|
+
"version": "5.7.1"
|
|
6118
6014
|
},
|
|
6119
6015
|
"aproba": {
|
|
6120
6016
|
"version": "2.0.0"
|
|
@@ -6157,6 +6053,9 @@
|
|
|
6157
6053
|
"path-is-absolute": "^1.0.0"
|
|
6158
6054
|
}
|
|
6159
6055
|
},
|
|
6056
|
+
"isarray": {
|
|
6057
|
+
"version": "1.0.0"
|
|
6058
|
+
},
|
|
6160
6059
|
"readable-stream": {
|
|
6161
6060
|
"version": "2.3.7",
|
|
6162
6061
|
"requires": {
|
|
@@ -6215,7 +6114,7 @@
|
|
|
6215
6114
|
"version": "0.4.0"
|
|
6216
6115
|
},
|
|
6217
6116
|
"axios": {
|
|
6218
|
-
"version": "1.1.
|
|
6117
|
+
"version": "1.1.3",
|
|
6219
6118
|
"requires": {
|
|
6220
6119
|
"follow-redirects": "^1.15.0",
|
|
6221
6120
|
"form-data": "^4.0.0",
|
|
@@ -6262,7 +6161,7 @@
|
|
|
6262
6161
|
"version": "0.1.0"
|
|
6263
6162
|
},
|
|
6264
6163
|
"body-parser": {
|
|
6265
|
-
"version": "1.20.
|
|
6164
|
+
"version": "1.20.1",
|
|
6266
6165
|
"extraneous": true,
|
|
6267
6166
|
"requires": {
|
|
6268
6167
|
"bytes": "3.1.2",
|
|
@@ -6273,7 +6172,7 @@
|
|
|
6273
6172
|
"http-errors": "2.0.0",
|
|
6274
6173
|
"iconv-lite": "0.4.24",
|
|
6275
6174
|
"on-finished": "2.4.1",
|
|
6276
|
-
"qs": "6.
|
|
6175
|
+
"qs": "6.11.0",
|
|
6277
6176
|
"raw-body": "2.5.1",
|
|
6278
6177
|
"type-is": "~1.6.18",
|
|
6279
6178
|
"unpipe": "1.0.0"
|
|
@@ -6665,12 +6564,12 @@
|
|
|
6665
6564
|
"version": "0.1.12"
|
|
6666
6565
|
},
|
|
6667
6566
|
"express": {
|
|
6668
|
-
"version": "4.18.
|
|
6567
|
+
"version": "4.18.2",
|
|
6669
6568
|
"extraneous": true,
|
|
6670
6569
|
"requires": {
|
|
6671
6570
|
"accepts": "~1.3.8",
|
|
6672
6571
|
"array-flatten": "1.1.1",
|
|
6673
|
-
"body-parser": "1.20.
|
|
6572
|
+
"body-parser": "1.20.1",
|
|
6674
6573
|
"content-disposition": "0.5.4",
|
|
6675
6574
|
"content-type": "~1.0.4",
|
|
6676
6575
|
"cookie": "0.5.0",
|
|
@@ -6689,7 +6588,7 @@
|
|
|
6689
6588
|
"parseurl": "~1.3.3",
|
|
6690
6589
|
"path-to-regexp": "0.1.7",
|
|
6691
6590
|
"proxy-addr": "~2.0.7",
|
|
6692
|
-
"qs": "6.
|
|
6591
|
+
"qs": "6.11.0",
|
|
6693
6592
|
"range-parser": "~1.2.1",
|
|
6694
6593
|
"safe-buffer": "5.2.1",
|
|
6695
6594
|
"send": "0.18.0",
|
|
@@ -7051,7 +6950,7 @@
|
|
|
7051
6950
|
}
|
|
7052
6951
|
},
|
|
7053
6952
|
"io.appium.settings": {
|
|
7054
|
-
"version": "4.2.
|
|
6953
|
+
"version": "4.2.2"
|
|
7055
6954
|
},
|
|
7056
6955
|
"ipaddr.js": {
|
|
7057
6956
|
"version": "1.9.1",
|
|
@@ -7080,7 +6979,7 @@
|
|
|
7080
6979
|
"extraneous": true
|
|
7081
6980
|
},
|
|
7082
6981
|
"is-core-module": {
|
|
7083
|
-
"version": "2.
|
|
6982
|
+
"version": "2.11.0",
|
|
7084
6983
|
"requires": {
|
|
7085
6984
|
"has": "^1.0.3"
|
|
7086
6985
|
}
|
|
@@ -7159,19 +7058,16 @@
|
|
|
7159
7058
|
"call-bind": "^1.0.2"
|
|
7160
7059
|
}
|
|
7161
7060
|
},
|
|
7162
|
-
"isarray": {
|
|
7163
|
-
"version": "1.0.0"
|
|
7164
|
-
},
|
|
7165
7061
|
"isexe": {
|
|
7166
7062
|
"version": "2.0.0"
|
|
7167
7063
|
},
|
|
7168
7064
|
"jimp": {
|
|
7169
|
-
"version": "0.16.
|
|
7065
|
+
"version": "0.16.2",
|
|
7170
7066
|
"requires": {
|
|
7171
7067
|
"@babel/runtime": "^7.7.2",
|
|
7172
|
-
"@jimp/custom": "^0.16.
|
|
7173
|
-
"@jimp/plugins": "^0.16.
|
|
7174
|
-
"@jimp/types": "^0.16.
|
|
7068
|
+
"@jimp/custom": "^0.16.2",
|
|
7069
|
+
"@jimp/plugins": "^0.16.2",
|
|
7070
|
+
"@jimp/types": "^0.16.2",
|
|
7175
7071
|
"regenerator-runtime": "^0.13.3"
|
|
7176
7072
|
}
|
|
7177
7073
|
},
|
|
@@ -7220,7 +7116,7 @@
|
|
|
7220
7116
|
}
|
|
7221
7117
|
},
|
|
7222
7118
|
"jsdoc-plugin-typescript": {
|
|
7223
|
-
"version": "2.
|
|
7119
|
+
"version": "2.2.0",
|
|
7224
7120
|
"extraneous": true,
|
|
7225
7121
|
"requires": {
|
|
7226
7122
|
"string.prototype.matchall": "^4.0.0"
|
|
@@ -7280,6 +7176,9 @@
|
|
|
7280
7176
|
"readable-stream": "^2.0.5"
|
|
7281
7177
|
},
|
|
7282
7178
|
"dependencies": {
|
|
7179
|
+
"isarray": {
|
|
7180
|
+
"version": "1.0.0"
|
|
7181
|
+
},
|
|
7283
7182
|
"readable-stream": {
|
|
7284
7183
|
"version": "2.3.7",
|
|
7285
7184
|
"requires": {
|
|
@@ -7527,7 +7426,7 @@
|
|
|
7527
7426
|
"version": "2.29.4"
|
|
7528
7427
|
},
|
|
7529
7428
|
"moment-timezone": {
|
|
7530
|
-
"version": "0.5.
|
|
7429
|
+
"version": "0.5.38",
|
|
7531
7430
|
"requires": {
|
|
7532
7431
|
"moment": ">= 2.9.0"
|
|
7533
7432
|
}
|
|
@@ -7915,7 +7814,7 @@
|
|
|
7915
7814
|
"extraneous": true
|
|
7916
7815
|
},
|
|
7917
7816
|
"qs": {
|
|
7918
|
-
"version": "6.
|
|
7817
|
+
"version": "6.11.0",
|
|
7919
7818
|
"extraneous": true,
|
|
7920
7819
|
"requires": {
|
|
7921
7820
|
"side-channel": "^1.0.4"
|
|
@@ -7981,7 +7880,7 @@
|
|
|
7981
7880
|
}
|
|
7982
7881
|
},
|
|
7983
7882
|
"regenerator-runtime": {
|
|
7984
|
-
"version": "0.13.
|
|
7883
|
+
"version": "0.13.10"
|
|
7985
7884
|
},
|
|
7986
7885
|
"regexp.prototype.flags": {
|
|
7987
7886
|
"version": "1.4.3",
|
|
@@ -8063,7 +7962,7 @@
|
|
|
8063
7962
|
}
|
|
8064
7963
|
},
|
|
8065
7964
|
"safe-stable-stringify": {
|
|
8066
|
-
"version": "2.4.
|
|
7965
|
+
"version": "2.4.1",
|
|
8067
7966
|
"extraneous": true
|
|
8068
7967
|
},
|
|
8069
7968
|
"safer-buffer": {
|
|
@@ -8080,7 +7979,7 @@
|
|
|
8080
7979
|
"version": "1.2.4"
|
|
8081
7980
|
},
|
|
8082
7981
|
"semver": {
|
|
8083
|
-
"version": "7.3.
|
|
7982
|
+
"version": "7.3.8",
|
|
8084
7983
|
"requires": {
|
|
8085
7984
|
"lru-cache": "^6.0.0"
|
|
8086
7985
|
},
|
|
@@ -8193,7 +8092,7 @@
|
|
|
8193
8092
|
"extraneous": true
|
|
8194
8093
|
},
|
|
8195
8094
|
"shell-quote": {
|
|
8196
|
-
"version": "1.7.
|
|
8095
|
+
"version": "1.7.4"
|
|
8197
8096
|
},
|
|
8198
8097
|
"side-channel": {
|
|
8199
8098
|
"version": "1.0.4",
|
|
@@ -8355,6 +8254,9 @@
|
|
|
8355
8254
|
"requires": {
|
|
8356
8255
|
"regenerator-runtime": "^0.13.4"
|
|
8357
8256
|
}
|
|
8257
|
+
},
|
|
8258
|
+
"shell-quote": {
|
|
8259
|
+
"version": "1.7.3"
|
|
8358
8260
|
}
|
|
8359
8261
|
}
|
|
8360
8262
|
},
|
|
@@ -8386,7 +8288,7 @@
|
|
|
8386
8288
|
}
|
|
8387
8289
|
},
|
|
8388
8290
|
"type-fest": {
|
|
8389
|
-
"version": "
|
|
8291
|
+
"version": "3.1.0"
|
|
8390
8292
|
},
|
|
8391
8293
|
"type-is": {
|
|
8392
8294
|
"version": "1.6.18",
|
|
@@ -8520,9 +8422,10 @@
|
|
|
8520
8422
|
}
|
|
8521
8423
|
},
|
|
8522
8424
|
"winston": {
|
|
8523
|
-
"version": "3.8.
|
|
8425
|
+
"version": "3.8.2",
|
|
8524
8426
|
"extraneous": true,
|
|
8525
8427
|
"requires": {
|
|
8428
|
+
"@colors/colors": "1.5.0",
|
|
8526
8429
|
"@dabh/diagnostics": "^2.0.2",
|
|
8527
8430
|
"async": "^3.2.3",
|
|
8528
8431
|
"is-stream": "^2.0.0",
|
|
@@ -8594,7 +8497,7 @@
|
|
|
8594
8497
|
"version": "1.0.2"
|
|
8595
8498
|
},
|
|
8596
8499
|
"ws": {
|
|
8597
|
-
"version": "8.
|
|
8500
|
+
"version": "8.10.0",
|
|
8598
8501
|
"requires": {}
|
|
8599
8502
|
},
|
|
8600
8503
|
"xhr": {
|
|
@@ -8638,7 +8541,7 @@
|
|
|
8638
8541
|
"version": "4.0.0"
|
|
8639
8542
|
},
|
|
8640
8543
|
"yaml": {
|
|
8641
|
-
"version": "2.1.
|
|
8544
|
+
"version": "2.1.3",
|
|
8642
8545
|
"extraneous": true
|
|
8643
8546
|
},
|
|
8644
8547
|
"yauzl": {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "2.
|
|
10
|
+
"version": "2.9.1",
|
|
11
11
|
"author": "Appium Contributors",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
],
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@babel/runtime": "^7.0.0",
|
|
58
|
-
"appium-adb": "^9.10.
|
|
59
|
-
"appium-android-driver": "^5.
|
|
58
|
+
"appium-adb": "^9.10.14",
|
|
59
|
+
"appium-android-driver": "^5.6.0",
|
|
60
60
|
"appium-chromedriver": "^5.2.1",
|
|
61
61
|
"appium-uiautomator2-server": "^5.7.0",
|
|
62
62
|
"asyncbox": "^2.3.1",
|