appium-espresso-driver 4.1.3 → 4.1.5
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 +12 -0
- package/build/lib/doctor/required-checks.d.ts.map +1 -1
- package/build/lib/driver.d.ts +52 -0
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/method-map.d.ts +52 -0
- package/build/lib/method-map.d.ts.map +1 -1
- package/build/lib/method-map.js +2 -1
- package/build/lib/method-map.js.map +1 -1
- package/espresso-server/library/src/main/java/io/appium/espressoserver/lib/helpers/Version.kt +1 -1
- package/lib/method-map.js +2 -1
- package/npm-shrinkwrap.json +46 -46
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [4.1.5](https://github.com/appium/appium-espresso-driver/compare/v4.1.4...v4.1.5) (2025-04-25)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* add deprecated: true for get clipboard ([#1060](https://github.com/appium/appium-espresso-driver/issues/1060)) ([6fdc4b5](https://github.com/appium/appium-espresso-driver/commit/6fdc4b5e6d96beacb3a16c51a2d1739bbfb760cf))
|
|
6
|
+
|
|
7
|
+
## [4.1.4](https://github.com/appium/appium-espresso-driver/compare/v4.1.3...v4.1.4) (2025-03-25)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* **deps-dev:** bump sinon from 19.0.5 to 20.0.0 ([#1057](https://github.com/appium/appium-espresso-driver/issues/1057)) ([332b46f](https://github.com/appium/appium-espresso-driver/commit/332b46fcd2d01fe971e7ab9f30cd57b5356bafbe))
|
|
12
|
+
|
|
1
13
|
## [4.1.3](https://github.com/appium/appium-espresso-driver/compare/v4.1.2...v4.1.3) (2025-03-17)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"required-checks.d.ts","sourceRoot":"","sources":["../../../lib/doctor/required-checks.js"],"names":[],"mappings":"AAKA
|
|
1
|
+
{"version":3,"file":"required-checks.d.ts","sourceRoot":"","sources":["../../../lib/doctor/required-checks.js"],"names":[],"mappings":"AAKA;;;;;;;EAA8D;AAC9D;;;;;;;EAAwD;AACxD,iEAAkE;AAClE,2DAA4D;AAE5D,wDAAwD;AACxD;IACE,yBAAsB;IACtB,6BAA2D;IAE3D,+DAoBC;IAED,uBAGC;IAED,sBAEC;IAED,sBAEC;CACF;AACD,gDAAuD;uCAlDhB,uBAAuB"}
|
package/build/lib/driver.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
23
23
|
readonly payloadParams: {
|
|
24
24
|
readonly optional: readonly ["contentType"];
|
|
25
25
|
};
|
|
26
|
+
readonly deprecated: true;
|
|
26
27
|
};
|
|
27
28
|
};
|
|
28
29
|
readonly '/session/:sessionId/timeouts/implicit_wait': {
|
|
@@ -31,6 +32,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
31
32
|
readonly payloadParams: {
|
|
32
33
|
readonly required: readonly ["ms"];
|
|
33
34
|
};
|
|
35
|
+
readonly deprecated: true;
|
|
34
36
|
};
|
|
35
37
|
};
|
|
36
38
|
readonly '/session/:sessionId/ime/available_engines': {
|
|
@@ -64,6 +66,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
64
66
|
readonly '/session/:sessionId/window/:windowhandle/size': {
|
|
65
67
|
readonly GET: {
|
|
66
68
|
readonly command: "getWindowSize";
|
|
69
|
+
readonly deprecated: true;
|
|
67
70
|
};
|
|
68
71
|
};
|
|
69
72
|
readonly '/session/:sessionId/keys': {
|
|
@@ -72,21 +75,25 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
72
75
|
readonly payloadParams: {
|
|
73
76
|
readonly required: readonly ["value"];
|
|
74
77
|
};
|
|
78
|
+
readonly deprecated: true;
|
|
75
79
|
};
|
|
76
80
|
};
|
|
77
81
|
readonly '/session/:sessionId/element/:elementId/location': {
|
|
78
82
|
readonly GET: {
|
|
79
83
|
readonly command: "getLocation";
|
|
84
|
+
readonly deprecated: true;
|
|
80
85
|
};
|
|
81
86
|
};
|
|
82
87
|
readonly '/session/:sessionId/element/:elementId/location_in_view': {
|
|
83
88
|
readonly GET: {
|
|
84
89
|
readonly command: "getLocationInView";
|
|
90
|
+
readonly deprecated: true;
|
|
85
91
|
};
|
|
86
92
|
};
|
|
87
93
|
readonly '/session/:sessionId/element/:elementId/size': {
|
|
88
94
|
readonly GET: {
|
|
89
95
|
readonly command: "getSize";
|
|
96
|
+
readonly deprecated: true;
|
|
90
97
|
};
|
|
91
98
|
};
|
|
92
99
|
readonly '/session/:sessionId/appium/device/lock': {
|
|
@@ -95,16 +102,19 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
95
102
|
readonly payloadParams: {
|
|
96
103
|
readonly optional: readonly ["seconds"];
|
|
97
104
|
};
|
|
105
|
+
readonly deprecated: true;
|
|
98
106
|
};
|
|
99
107
|
};
|
|
100
108
|
readonly '/session/:sessionId/appium/device/unlock': {
|
|
101
109
|
readonly POST: {
|
|
102
110
|
readonly command: "unlock";
|
|
111
|
+
readonly deprecated: true;
|
|
103
112
|
};
|
|
104
113
|
};
|
|
105
114
|
readonly '/session/:sessionId/appium/device/is_locked': {
|
|
106
115
|
readonly POST: {
|
|
107
116
|
readonly command: "isLocked";
|
|
117
|
+
readonly deprecated: true;
|
|
108
118
|
};
|
|
109
119
|
};
|
|
110
120
|
readonly '/session/:sessionId/appium/start_recording_screen': {
|
|
@@ -126,6 +136,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
126
136
|
readonly '/session/:sessionId/appium/performanceData/types': {
|
|
127
137
|
readonly POST: {
|
|
128
138
|
readonly command: "getPerformanceDataTypes";
|
|
139
|
+
readonly deprecated: true;
|
|
129
140
|
};
|
|
130
141
|
};
|
|
131
142
|
readonly '/session/:sessionId/appium/getPerformanceData': {
|
|
@@ -135,6 +146,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
135
146
|
readonly required: readonly ["packageName", "dataType"];
|
|
136
147
|
readonly optional: readonly ["dataReadTimeout"];
|
|
137
148
|
};
|
|
149
|
+
readonly deprecated: true;
|
|
138
150
|
};
|
|
139
151
|
};
|
|
140
152
|
readonly '/session/:sessionId/appium/device/press_keycode': {
|
|
@@ -144,6 +156,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
144
156
|
readonly required: readonly ["keycode"];
|
|
145
157
|
readonly optional: readonly ["metastate", "flags"];
|
|
146
158
|
};
|
|
159
|
+
readonly deprecated: true;
|
|
147
160
|
};
|
|
148
161
|
};
|
|
149
162
|
readonly '/session/:sessionId/appium/device/long_press_keycode': {
|
|
@@ -153,6 +166,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
153
166
|
readonly required: readonly ["keycode"];
|
|
154
167
|
readonly optional: readonly ["metastate", "flags"];
|
|
155
168
|
};
|
|
169
|
+
readonly deprecated: true;
|
|
156
170
|
};
|
|
157
171
|
};
|
|
158
172
|
readonly '/session/:sessionId/appium/device/finger_print': {
|
|
@@ -161,6 +175,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
161
175
|
readonly payloadParams: {
|
|
162
176
|
readonly required: readonly ["fingerprintId"];
|
|
163
177
|
};
|
|
178
|
+
readonly deprecated: true;
|
|
164
179
|
};
|
|
165
180
|
};
|
|
166
181
|
readonly '/session/:sessionId/appium/device/send_sms': {
|
|
@@ -169,6 +184,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
169
184
|
readonly payloadParams: {
|
|
170
185
|
readonly required: readonly ["phoneNumber", "message"];
|
|
171
186
|
};
|
|
187
|
+
readonly deprecated: true;
|
|
172
188
|
};
|
|
173
189
|
};
|
|
174
190
|
readonly '/session/:sessionId/appium/device/gsm_call': {
|
|
@@ -177,6 +193,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
177
193
|
readonly payloadParams: {
|
|
178
194
|
readonly required: readonly ["phoneNumber", "action"];
|
|
179
195
|
};
|
|
196
|
+
readonly deprecated: true;
|
|
180
197
|
};
|
|
181
198
|
};
|
|
182
199
|
readonly '/session/:sessionId/appium/device/gsm_signal': {
|
|
@@ -185,6 +202,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
185
202
|
readonly payloadParams: {
|
|
186
203
|
readonly required: readonly ["signalStrength"];
|
|
187
204
|
};
|
|
205
|
+
readonly deprecated: true;
|
|
188
206
|
};
|
|
189
207
|
};
|
|
190
208
|
readonly '/session/:sessionId/appium/device/gsm_voice': {
|
|
@@ -193,6 +211,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
193
211
|
readonly payloadParams: {
|
|
194
212
|
readonly required: readonly ["state"];
|
|
195
213
|
};
|
|
214
|
+
readonly deprecated: true;
|
|
196
215
|
};
|
|
197
216
|
};
|
|
198
217
|
readonly '/session/:sessionId/appium/device/power_capacity': {
|
|
@@ -201,6 +220,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
201
220
|
readonly payloadParams: {
|
|
202
221
|
readonly required: readonly ["percent"];
|
|
203
222
|
};
|
|
223
|
+
readonly deprecated: true;
|
|
204
224
|
};
|
|
205
225
|
};
|
|
206
226
|
readonly '/session/:sessionId/appium/device/power_ac': {
|
|
@@ -209,6 +229,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
209
229
|
readonly payloadParams: {
|
|
210
230
|
readonly required: readonly ["state"];
|
|
211
231
|
};
|
|
232
|
+
readonly deprecated: true;
|
|
212
233
|
};
|
|
213
234
|
};
|
|
214
235
|
readonly '/session/:sessionId/appium/device/network_speed': {
|
|
@@ -217,6 +238,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
217
238
|
readonly payloadParams: {
|
|
218
239
|
readonly required: readonly ["netspeed"];
|
|
219
240
|
};
|
|
241
|
+
readonly deprecated: true;
|
|
220
242
|
};
|
|
221
243
|
};
|
|
222
244
|
readonly '/session/:sessionId/appium/device/keyevent': {
|
|
@@ -226,16 +248,19 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
226
248
|
readonly required: readonly ["keycode"];
|
|
227
249
|
readonly optional: readonly ["metastate"];
|
|
228
250
|
};
|
|
251
|
+
readonly deprecated: true;
|
|
229
252
|
};
|
|
230
253
|
};
|
|
231
254
|
readonly '/session/:sessionId/appium/device/current_activity': {
|
|
232
255
|
readonly GET: {
|
|
233
256
|
readonly command: "getCurrentActivity";
|
|
257
|
+
readonly deprecated: true;
|
|
234
258
|
};
|
|
235
259
|
};
|
|
236
260
|
readonly '/session/:sessionId/appium/device/current_package': {
|
|
237
261
|
readonly GET: {
|
|
238
262
|
readonly command: "getCurrentPackage";
|
|
263
|
+
readonly deprecated: true;
|
|
239
264
|
};
|
|
240
265
|
};
|
|
241
266
|
readonly '/session/:sessionId/appium/device/app_state': {
|
|
@@ -244,31 +269,37 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
244
269
|
readonly payloadParams: {
|
|
245
270
|
readonly required: readonly [readonly ["appId"], readonly ["bundleId"]];
|
|
246
271
|
};
|
|
272
|
+
readonly deprecated: true;
|
|
247
273
|
};
|
|
248
274
|
};
|
|
249
275
|
readonly '/session/:sessionId/appium/device/toggle_airplane_mode': {
|
|
250
276
|
readonly POST: {
|
|
251
277
|
readonly command: "toggleFlightMode";
|
|
278
|
+
readonly deprecated: true;
|
|
252
279
|
};
|
|
253
280
|
};
|
|
254
281
|
readonly '/session/:sessionId/appium/device/toggle_data': {
|
|
255
282
|
readonly POST: {
|
|
256
283
|
readonly command: "toggleData";
|
|
284
|
+
readonly deprecated: true;
|
|
257
285
|
};
|
|
258
286
|
};
|
|
259
287
|
readonly '/session/:sessionId/appium/device/toggle_wifi': {
|
|
260
288
|
readonly POST: {
|
|
261
289
|
readonly command: "toggleWiFi";
|
|
290
|
+
readonly deprecated: true;
|
|
262
291
|
};
|
|
263
292
|
};
|
|
264
293
|
readonly '/session/:sessionId/appium/device/toggle_location_services': {
|
|
265
294
|
readonly POST: {
|
|
266
295
|
readonly command: "toggleLocationServices";
|
|
296
|
+
readonly deprecated: true;
|
|
267
297
|
};
|
|
268
298
|
};
|
|
269
299
|
readonly '/session/:sessionId/appium/device/open_notifications': {
|
|
270
300
|
readonly POST: {
|
|
271
301
|
readonly command: "openNotifications";
|
|
302
|
+
readonly deprecated: true;
|
|
272
303
|
};
|
|
273
304
|
};
|
|
274
305
|
readonly '/session/:sessionId/appium/device/start_activity': {
|
|
@@ -278,16 +309,19 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
278
309
|
readonly required: readonly ["appPackage", "appActivity"];
|
|
279
310
|
readonly optional: readonly ["appWaitPackage", "appWaitActivity", "intentAction", "intentCategory", "intentFlags", "optionalIntentArguments", "dontStopAppOnReset"];
|
|
280
311
|
};
|
|
312
|
+
readonly deprecated: true;
|
|
281
313
|
};
|
|
282
314
|
};
|
|
283
315
|
readonly '/session/:sessionId/appium/device/system_bars': {
|
|
284
316
|
readonly GET: {
|
|
285
317
|
readonly command: "getSystemBars";
|
|
318
|
+
readonly deprecated: true;
|
|
286
319
|
};
|
|
287
320
|
};
|
|
288
321
|
readonly '/session/:sessionId/appium/device/display_density': {
|
|
289
322
|
readonly GET: {
|
|
290
323
|
readonly command: "getDisplayDensity";
|
|
324
|
+
readonly deprecated: true;
|
|
291
325
|
};
|
|
292
326
|
};
|
|
293
327
|
readonly '/session/:sessionId/appium/app/background': {
|
|
@@ -296,6 +330,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
296
330
|
readonly payloadParams: {
|
|
297
331
|
readonly required: readonly ["seconds"];
|
|
298
332
|
};
|
|
333
|
+
readonly deprecated: true;
|
|
299
334
|
};
|
|
300
335
|
};
|
|
301
336
|
readonly '/session/:sessionId/appium/app/strings': {
|
|
@@ -304,6 +339,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
304
339
|
readonly payloadParams: {
|
|
305
340
|
readonly optional: readonly ["language", "stringFile"];
|
|
306
341
|
};
|
|
342
|
+
readonly deprecated: true;
|
|
307
343
|
};
|
|
308
344
|
};
|
|
309
345
|
readonly '/session/:sessionId/appium/element/:elementId/value': {
|
|
@@ -312,6 +348,7 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
312
348
|
readonly payloadParams: {
|
|
313
349
|
readonly required: readonly ["text"];
|
|
314
350
|
};
|
|
351
|
+
readonly deprecated: true;
|
|
315
352
|
};
|
|
316
353
|
};
|
|
317
354
|
readonly '/session/:sessionId/appium/element/:elementId/replace_value': {
|
|
@@ -320,6 +357,21 @@ export declare class EspressoDriver extends AndroidDriver implements ExternalDri
|
|
|
320
357
|
readonly payloadParams: {
|
|
321
358
|
readonly required: readonly ["text"];
|
|
322
359
|
};
|
|
360
|
+
readonly deprecated: true;
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
readonly '/session/:sessionId/network_connection': {
|
|
364
|
+
readonly GET: {
|
|
365
|
+
readonly command: "getNetworkConnection";
|
|
366
|
+
readonly deprecated: true;
|
|
367
|
+
};
|
|
368
|
+
readonly POST: {
|
|
369
|
+
readonly command: "setNetworkConnection";
|
|
370
|
+
readonly payloadParams: {
|
|
371
|
+
readonly unwrap: "parameters";
|
|
372
|
+
readonly required: readonly ["type"];
|
|
373
|
+
};
|
|
374
|
+
readonly deprecated: true;
|
|
323
375
|
};
|
|
324
376
|
};
|
|
325
377
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAEV,UAAU,EACV,cAAc,EACd,WAAW,EACX,YAAY,EACZ,mBAAmB,EACnB,YAAY,EACb,MAAM,eAAe,CAAC;AACvB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAC;AAKzD,OAAO,EAAE,cAAc,EAAgB,MAAM,mBAAmB,CAAC;AAEjE,OAAO,KAAK,iBAAiB,MAAM,2BAA2B,CAAC;AAC/D,OAAO,KAAK,WAAW,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,WAAW,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,QAAQ,MAAM,iBAAiB,CAAC;AAC5C,OAAO,KAAK,YAAY,MAAM,qBAAqB,CAAC;AACpD,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AACxD,OAAO,KAAK,mBAAmB,MAAM,6BAA6B,CAAC;AACnE,OAAO,KAAK,WAAW,MAAM,oBAAoB,CAAC;AAClD,OAAO,KAAK,aAAa,MAAM,sBAAsB,CAAC;AAEtD,OAAO,EAAE,aAAa,EAAS,MAAM,uBAAuB,CAAC;AAO7D,OAAO,KAAK,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,MAAM,SAAS,CAAC;AA+G7F,qBAAa,cAAe,SAAQ,aAAc,YAAW,cAAc,CACzE,mBAAmB,EACnB,MAAM,EACN,YAAY,CACb;IACC,YAAY,EAAE,MAAM,GAAC,IAAI,CAAC;IAE1B,QAAQ,EAAE,cAAc,CAAC;IAEzB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAE9B,MAAM,CAAC,YAAY
|
|
1
|
+
{"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,6 +5,7 @@ export const newMethodMap: {
|
|
|
5
5
|
readonly payloadParams: {
|
|
6
6
|
readonly optional: readonly ["contentType"];
|
|
7
7
|
};
|
|
8
|
+
readonly deprecated: true;
|
|
8
9
|
};
|
|
9
10
|
};
|
|
10
11
|
readonly '/session/:sessionId/timeouts/implicit_wait': {
|
|
@@ -13,6 +14,7 @@ export const newMethodMap: {
|
|
|
13
14
|
readonly payloadParams: {
|
|
14
15
|
readonly required: readonly ["ms"];
|
|
15
16
|
};
|
|
17
|
+
readonly deprecated: true;
|
|
16
18
|
};
|
|
17
19
|
};
|
|
18
20
|
readonly '/session/:sessionId/ime/available_engines': {
|
|
@@ -46,6 +48,7 @@ export const newMethodMap: {
|
|
|
46
48
|
readonly '/session/:sessionId/window/:windowhandle/size': {
|
|
47
49
|
readonly GET: {
|
|
48
50
|
readonly command: "getWindowSize";
|
|
51
|
+
readonly deprecated: true;
|
|
49
52
|
};
|
|
50
53
|
};
|
|
51
54
|
readonly '/session/:sessionId/keys': {
|
|
@@ -54,21 +57,25 @@ export const newMethodMap: {
|
|
|
54
57
|
readonly payloadParams: {
|
|
55
58
|
readonly required: readonly ["value"];
|
|
56
59
|
};
|
|
60
|
+
readonly deprecated: true;
|
|
57
61
|
};
|
|
58
62
|
};
|
|
59
63
|
readonly '/session/:sessionId/element/:elementId/location': {
|
|
60
64
|
readonly GET: {
|
|
61
65
|
readonly command: "getLocation";
|
|
66
|
+
readonly deprecated: true;
|
|
62
67
|
};
|
|
63
68
|
};
|
|
64
69
|
readonly '/session/:sessionId/element/:elementId/location_in_view': {
|
|
65
70
|
readonly GET: {
|
|
66
71
|
readonly command: "getLocationInView";
|
|
72
|
+
readonly deprecated: true;
|
|
67
73
|
};
|
|
68
74
|
};
|
|
69
75
|
readonly '/session/:sessionId/element/:elementId/size': {
|
|
70
76
|
readonly GET: {
|
|
71
77
|
readonly command: "getSize";
|
|
78
|
+
readonly deprecated: true;
|
|
72
79
|
};
|
|
73
80
|
};
|
|
74
81
|
readonly '/session/:sessionId/appium/device/lock': {
|
|
@@ -77,16 +84,19 @@ export const newMethodMap: {
|
|
|
77
84
|
readonly payloadParams: {
|
|
78
85
|
readonly optional: readonly ["seconds"];
|
|
79
86
|
};
|
|
87
|
+
readonly deprecated: true;
|
|
80
88
|
};
|
|
81
89
|
};
|
|
82
90
|
readonly '/session/:sessionId/appium/device/unlock': {
|
|
83
91
|
readonly POST: {
|
|
84
92
|
readonly command: "unlock";
|
|
93
|
+
readonly deprecated: true;
|
|
85
94
|
};
|
|
86
95
|
};
|
|
87
96
|
readonly '/session/:sessionId/appium/device/is_locked': {
|
|
88
97
|
readonly POST: {
|
|
89
98
|
readonly command: "isLocked";
|
|
99
|
+
readonly deprecated: true;
|
|
90
100
|
};
|
|
91
101
|
};
|
|
92
102
|
readonly '/session/:sessionId/appium/start_recording_screen': {
|
|
@@ -108,6 +118,7 @@ export const newMethodMap: {
|
|
|
108
118
|
readonly '/session/:sessionId/appium/performanceData/types': {
|
|
109
119
|
readonly POST: {
|
|
110
120
|
readonly command: "getPerformanceDataTypes";
|
|
121
|
+
readonly deprecated: true;
|
|
111
122
|
};
|
|
112
123
|
};
|
|
113
124
|
readonly '/session/:sessionId/appium/getPerformanceData': {
|
|
@@ -117,6 +128,7 @@ export const newMethodMap: {
|
|
|
117
128
|
readonly required: readonly ["packageName", "dataType"];
|
|
118
129
|
readonly optional: readonly ["dataReadTimeout"];
|
|
119
130
|
};
|
|
131
|
+
readonly deprecated: true;
|
|
120
132
|
};
|
|
121
133
|
};
|
|
122
134
|
readonly '/session/:sessionId/appium/device/press_keycode': {
|
|
@@ -126,6 +138,7 @@ export const newMethodMap: {
|
|
|
126
138
|
readonly required: readonly ["keycode"];
|
|
127
139
|
readonly optional: readonly ["metastate", "flags"];
|
|
128
140
|
};
|
|
141
|
+
readonly deprecated: true;
|
|
129
142
|
};
|
|
130
143
|
};
|
|
131
144
|
readonly '/session/:sessionId/appium/device/long_press_keycode': {
|
|
@@ -135,6 +148,7 @@ export const newMethodMap: {
|
|
|
135
148
|
readonly required: readonly ["keycode"];
|
|
136
149
|
readonly optional: readonly ["metastate", "flags"];
|
|
137
150
|
};
|
|
151
|
+
readonly deprecated: true;
|
|
138
152
|
};
|
|
139
153
|
};
|
|
140
154
|
readonly '/session/:sessionId/appium/device/finger_print': {
|
|
@@ -143,6 +157,7 @@ export const newMethodMap: {
|
|
|
143
157
|
readonly payloadParams: {
|
|
144
158
|
readonly required: readonly ["fingerprintId"];
|
|
145
159
|
};
|
|
160
|
+
readonly deprecated: true;
|
|
146
161
|
};
|
|
147
162
|
};
|
|
148
163
|
readonly '/session/:sessionId/appium/device/send_sms': {
|
|
@@ -151,6 +166,7 @@ export const newMethodMap: {
|
|
|
151
166
|
readonly payloadParams: {
|
|
152
167
|
readonly required: readonly ["phoneNumber", "message"];
|
|
153
168
|
};
|
|
169
|
+
readonly deprecated: true;
|
|
154
170
|
};
|
|
155
171
|
};
|
|
156
172
|
readonly '/session/:sessionId/appium/device/gsm_call': {
|
|
@@ -159,6 +175,7 @@ export const newMethodMap: {
|
|
|
159
175
|
readonly payloadParams: {
|
|
160
176
|
readonly required: readonly ["phoneNumber", "action"];
|
|
161
177
|
};
|
|
178
|
+
readonly deprecated: true;
|
|
162
179
|
};
|
|
163
180
|
};
|
|
164
181
|
readonly '/session/:sessionId/appium/device/gsm_signal': {
|
|
@@ -167,6 +184,7 @@ export const newMethodMap: {
|
|
|
167
184
|
readonly payloadParams: {
|
|
168
185
|
readonly required: readonly ["signalStrength"];
|
|
169
186
|
};
|
|
187
|
+
readonly deprecated: true;
|
|
170
188
|
};
|
|
171
189
|
};
|
|
172
190
|
readonly '/session/:sessionId/appium/device/gsm_voice': {
|
|
@@ -175,6 +193,7 @@ export const newMethodMap: {
|
|
|
175
193
|
readonly payloadParams: {
|
|
176
194
|
readonly required: readonly ["state"];
|
|
177
195
|
};
|
|
196
|
+
readonly deprecated: true;
|
|
178
197
|
};
|
|
179
198
|
};
|
|
180
199
|
readonly '/session/:sessionId/appium/device/power_capacity': {
|
|
@@ -183,6 +202,7 @@ export const newMethodMap: {
|
|
|
183
202
|
readonly payloadParams: {
|
|
184
203
|
readonly required: readonly ["percent"];
|
|
185
204
|
};
|
|
205
|
+
readonly deprecated: true;
|
|
186
206
|
};
|
|
187
207
|
};
|
|
188
208
|
readonly '/session/:sessionId/appium/device/power_ac': {
|
|
@@ -191,6 +211,7 @@ export const newMethodMap: {
|
|
|
191
211
|
readonly payloadParams: {
|
|
192
212
|
readonly required: readonly ["state"];
|
|
193
213
|
};
|
|
214
|
+
readonly deprecated: true;
|
|
194
215
|
};
|
|
195
216
|
};
|
|
196
217
|
readonly '/session/:sessionId/appium/device/network_speed': {
|
|
@@ -199,6 +220,7 @@ export const newMethodMap: {
|
|
|
199
220
|
readonly payloadParams: {
|
|
200
221
|
readonly required: readonly ["netspeed"];
|
|
201
222
|
};
|
|
223
|
+
readonly deprecated: true;
|
|
202
224
|
};
|
|
203
225
|
};
|
|
204
226
|
readonly '/session/:sessionId/appium/device/keyevent': {
|
|
@@ -208,16 +230,19 @@ export const newMethodMap: {
|
|
|
208
230
|
readonly required: readonly ["keycode"];
|
|
209
231
|
readonly optional: readonly ["metastate"];
|
|
210
232
|
};
|
|
233
|
+
readonly deprecated: true;
|
|
211
234
|
};
|
|
212
235
|
};
|
|
213
236
|
readonly '/session/:sessionId/appium/device/current_activity': {
|
|
214
237
|
readonly GET: {
|
|
215
238
|
readonly command: "getCurrentActivity";
|
|
239
|
+
readonly deprecated: true;
|
|
216
240
|
};
|
|
217
241
|
};
|
|
218
242
|
readonly '/session/:sessionId/appium/device/current_package': {
|
|
219
243
|
readonly GET: {
|
|
220
244
|
readonly command: "getCurrentPackage";
|
|
245
|
+
readonly deprecated: true;
|
|
221
246
|
};
|
|
222
247
|
};
|
|
223
248
|
readonly '/session/:sessionId/appium/device/app_state': {
|
|
@@ -226,31 +251,37 @@ export const newMethodMap: {
|
|
|
226
251
|
readonly payloadParams: {
|
|
227
252
|
readonly required: readonly [readonly ["appId"], readonly ["bundleId"]];
|
|
228
253
|
};
|
|
254
|
+
readonly deprecated: true;
|
|
229
255
|
};
|
|
230
256
|
};
|
|
231
257
|
readonly '/session/:sessionId/appium/device/toggle_airplane_mode': {
|
|
232
258
|
readonly POST: {
|
|
233
259
|
readonly command: "toggleFlightMode";
|
|
260
|
+
readonly deprecated: true;
|
|
234
261
|
};
|
|
235
262
|
};
|
|
236
263
|
readonly '/session/:sessionId/appium/device/toggle_data': {
|
|
237
264
|
readonly POST: {
|
|
238
265
|
readonly command: "toggleData";
|
|
266
|
+
readonly deprecated: true;
|
|
239
267
|
};
|
|
240
268
|
};
|
|
241
269
|
readonly '/session/:sessionId/appium/device/toggle_wifi': {
|
|
242
270
|
readonly POST: {
|
|
243
271
|
readonly command: "toggleWiFi";
|
|
272
|
+
readonly deprecated: true;
|
|
244
273
|
};
|
|
245
274
|
};
|
|
246
275
|
readonly '/session/:sessionId/appium/device/toggle_location_services': {
|
|
247
276
|
readonly POST: {
|
|
248
277
|
readonly command: "toggleLocationServices";
|
|
278
|
+
readonly deprecated: true;
|
|
249
279
|
};
|
|
250
280
|
};
|
|
251
281
|
readonly '/session/:sessionId/appium/device/open_notifications': {
|
|
252
282
|
readonly POST: {
|
|
253
283
|
readonly command: "openNotifications";
|
|
284
|
+
readonly deprecated: true;
|
|
254
285
|
};
|
|
255
286
|
};
|
|
256
287
|
readonly '/session/:sessionId/appium/device/start_activity': {
|
|
@@ -260,16 +291,19 @@ export const newMethodMap: {
|
|
|
260
291
|
readonly required: readonly ["appPackage", "appActivity"];
|
|
261
292
|
readonly optional: readonly ["appWaitPackage", "appWaitActivity", "intentAction", "intentCategory", "intentFlags", "optionalIntentArguments", "dontStopAppOnReset"];
|
|
262
293
|
};
|
|
294
|
+
readonly deprecated: true;
|
|
263
295
|
};
|
|
264
296
|
};
|
|
265
297
|
readonly '/session/:sessionId/appium/device/system_bars': {
|
|
266
298
|
readonly GET: {
|
|
267
299
|
readonly command: "getSystemBars";
|
|
300
|
+
readonly deprecated: true;
|
|
268
301
|
};
|
|
269
302
|
};
|
|
270
303
|
readonly '/session/:sessionId/appium/device/display_density': {
|
|
271
304
|
readonly GET: {
|
|
272
305
|
readonly command: "getDisplayDensity";
|
|
306
|
+
readonly deprecated: true;
|
|
273
307
|
};
|
|
274
308
|
};
|
|
275
309
|
readonly '/session/:sessionId/appium/app/background': {
|
|
@@ -278,6 +312,7 @@ export const newMethodMap: {
|
|
|
278
312
|
readonly payloadParams: {
|
|
279
313
|
readonly required: readonly ["seconds"];
|
|
280
314
|
};
|
|
315
|
+
readonly deprecated: true;
|
|
281
316
|
};
|
|
282
317
|
};
|
|
283
318
|
readonly '/session/:sessionId/appium/app/strings': {
|
|
@@ -286,6 +321,7 @@ export const newMethodMap: {
|
|
|
286
321
|
readonly payloadParams: {
|
|
287
322
|
readonly optional: readonly ["language", "stringFile"];
|
|
288
323
|
};
|
|
324
|
+
readonly deprecated: true;
|
|
289
325
|
};
|
|
290
326
|
};
|
|
291
327
|
readonly '/session/:sessionId/appium/element/:elementId/value': {
|
|
@@ -294,6 +330,7 @@ export const newMethodMap: {
|
|
|
294
330
|
readonly payloadParams: {
|
|
295
331
|
readonly required: readonly ["text"];
|
|
296
332
|
};
|
|
333
|
+
readonly deprecated: true;
|
|
297
334
|
};
|
|
298
335
|
};
|
|
299
336
|
readonly '/session/:sessionId/appium/element/:elementId/replace_value': {
|
|
@@ -302,6 +339,21 @@ export const newMethodMap: {
|
|
|
302
339
|
readonly payloadParams: {
|
|
303
340
|
readonly required: readonly ["text"];
|
|
304
341
|
};
|
|
342
|
+
readonly deprecated: true;
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
readonly '/session/:sessionId/network_connection': {
|
|
346
|
+
readonly GET: {
|
|
347
|
+
readonly command: "getNetworkConnection";
|
|
348
|
+
readonly deprecated: true;
|
|
349
|
+
};
|
|
350
|
+
readonly POST: {
|
|
351
|
+
readonly command: "setNetworkConnection";
|
|
352
|
+
readonly payloadParams: {
|
|
353
|
+
readonly unwrap: "parameters";
|
|
354
|
+
readonly required: readonly ["type"];
|
|
355
|
+
};
|
|
356
|
+
readonly deprecated: true;
|
|
305
357
|
};
|
|
306
358
|
};
|
|
307
359
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"method-map.d.ts","sourceRoot":"","sources":["../../lib/method-map.js"],"names":[],"mappings":"AAEA
|
|
1
|
+
{"version":3,"file":"method-map.d.ts","sourceRoot":"","sources":["../../lib/method-map.js"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EASG"}
|
package/build/lib/method-map.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"method-map.js","sourceRoot":"","sources":["../../lib/method-map.js"],"names":[],"mappings":";;;AAAA,iEAAsD;AAEzC,QAAA,YAAY,GAAwB,CAAC;IAChD,GAAG,qCAAa,CAAC,YAAY;IAC7B,iDAAiD,EAAE;QACjD,IAAI,EAAE;YACJ,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,EAAE,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAE;
|
|
1
|
+
{"version":3,"file":"method-map.js","sourceRoot":"","sources":["../../lib/method-map.js"],"names":[],"mappings":";;;AAAA,iEAAsD;AAEzC,QAAA,YAAY,GAAwB,CAAC;IAChD,GAAG,qCAAa,CAAC,YAAY;IAC7B,iDAAiD,EAAE;QACjD,IAAI,EAAE;YACJ,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,EAAE,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAE;YAC5C,UAAU,EAAE,IAAI;SACjB;KACF;CACF,CAAC,CAAC"}
|
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.1.
|
|
5
|
+
private const val VERSION = "4.1.5"
|
|
6
6
|
|
|
7
7
|
fun getEspressoServerVersion() = VERSION
|
package/lib/method-map.js
CHANGED
|
@@ -5,7 +5,8 @@ export const newMethodMap = /** @type {const} */ ({
|
|
|
5
5
|
'/session/:sessionId/appium/device/get_clipboard': {
|
|
6
6
|
POST: {
|
|
7
7
|
command: 'getClipboard',
|
|
8
|
-
payloadParams: { optional: ['contentType'] }
|
|
8
|
+
payloadParams: { optional: ['contentType'] },
|
|
9
|
+
deprecated: true
|
|
9
10
|
}
|
|
10
11
|
}
|
|
11
12
|
});
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-espresso-driver",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.5",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-espresso-driver",
|
|
9
|
-
"version": "4.1.
|
|
9
|
+
"version": "4.1.5",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"appium-adb": "^12.12.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"rimraf": "^5.0.0",
|
|
45
45
|
"semantic-release": "^24.0.0",
|
|
46
46
|
"semver": "^7.3.7",
|
|
47
|
-
"sinon": "^
|
|
47
|
+
"sinon": "^20.0.0",
|
|
48
48
|
"ts-node": "^10.9.1",
|
|
49
49
|
"typescript": "^5.4.2",
|
|
50
50
|
"webdriverio": "^9.9.0",
|
|
@@ -59,17 +59,17 @@
|
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"node_modules/@appium/base-driver": {
|
|
62
|
-
"version": "9.16.
|
|
63
|
-
"resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.16.
|
|
64
|
-
"integrity": "sha512
|
|
62
|
+
"version": "9.16.4",
|
|
63
|
+
"resolved": "https://registry.npmjs.org/@appium/base-driver/-/base-driver-9.16.4.tgz",
|
|
64
|
+
"integrity": "sha512-tWWf2vtJvDaKRtulqqMAq2YfWdtTDdVGnrtmp2DeaJX3rMjeRQPQ4Le+zMUdLIGSKNHZ9/f1BYnTtA1MToeEvQ==",
|
|
65
65
|
"license": "Apache-2.0",
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@appium/support": "^6.0.
|
|
67
|
+
"@appium/support": "^6.0.8",
|
|
68
68
|
"@appium/types": "^0.25.2",
|
|
69
69
|
"@colors/colors": "1.6.0",
|
|
70
70
|
"async-lock": "1.4.1",
|
|
71
71
|
"asyncbox": "3.0.0",
|
|
72
|
-
"axios": "1.8.
|
|
72
|
+
"axios": "1.8.3",
|
|
73
73
|
"bluebird": "3.7.2",
|
|
74
74
|
"body-parser": "1.20.3",
|
|
75
75
|
"express": "4.21.2",
|
|
@@ -94,9 +94,9 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"node_modules/@appium/base-driver/node_modules/axios": {
|
|
97
|
-
"version": "1.8.
|
|
98
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.
|
|
99
|
-
"integrity": "sha512-
|
|
97
|
+
"version": "1.8.3",
|
|
98
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.3.tgz",
|
|
99
|
+
"integrity": "sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==",
|
|
100
100
|
"license": "MIT",
|
|
101
101
|
"dependencies": {
|
|
102
102
|
"follow-redirects": "^1.15.6",
|
|
@@ -135,9 +135,9 @@
|
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
137
|
"node_modules/@appium/support": {
|
|
138
|
-
"version": "6.0.
|
|
139
|
-
"resolved": "https://registry.npmjs.org/@appium/support/-/support-6.0.
|
|
140
|
-
"integrity": "sha512-
|
|
138
|
+
"version": "6.0.8",
|
|
139
|
+
"resolved": "https://registry.npmjs.org/@appium/support/-/support-6.0.8.tgz",
|
|
140
|
+
"integrity": "sha512-vhQtJwD89BbPDb7n+wvYFWKBF1sCd9XS/yTR8eA5mRGM+frCS9mlxy9VNAcjEbxfkLwSa4iqRhp3MzK8L4w4KA==",
|
|
141
141
|
"license": "Apache-2.0",
|
|
142
142
|
"dependencies": {
|
|
143
143
|
"@appium/logger": "^1.6.1",
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"@appium/types": "^0.25.2",
|
|
146
146
|
"@colors/colors": "1.6.0",
|
|
147
147
|
"archiver": "7.0.1",
|
|
148
|
-
"axios": "1.8.
|
|
148
|
+
"axios": "1.8.3",
|
|
149
149
|
"base64-stream": "1.0.0",
|
|
150
150
|
"bluebird": "3.7.2",
|
|
151
151
|
"bplist-creator": "0.1.1",
|
|
@@ -186,9 +186,9 @@
|
|
|
186
186
|
}
|
|
187
187
|
},
|
|
188
188
|
"node_modules/@appium/support/node_modules/axios": {
|
|
189
|
-
"version": "1.8.
|
|
190
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.
|
|
191
|
-
"integrity": "sha512-
|
|
189
|
+
"version": "1.8.3",
|
|
190
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.8.3.tgz",
|
|
191
|
+
"integrity": "sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==",
|
|
192
192
|
"license": "MIT",
|
|
193
193
|
"dependencies": {
|
|
194
194
|
"follow-redirects": "^1.15.6",
|
|
@@ -258,9 +258,9 @@
|
|
|
258
258
|
}
|
|
259
259
|
},
|
|
260
260
|
"node_modules/@emnapi/runtime": {
|
|
261
|
-
"version": "1.3
|
|
262
|
-
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.
|
|
263
|
-
"integrity": "sha512-
|
|
261
|
+
"version": "1.4.3",
|
|
262
|
+
"resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz",
|
|
263
|
+
"integrity": "sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==",
|
|
264
264
|
"extraneous": true,
|
|
265
265
|
"license": "MIT",
|
|
266
266
|
"dependencies": {
|
|
@@ -435,9 +435,9 @@
|
|
|
435
435
|
}
|
|
436
436
|
},
|
|
437
437
|
"node_modules/appium-adb": {
|
|
438
|
-
"version": "12.12.
|
|
439
|
-
"resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-12.12.
|
|
440
|
-
"integrity": "sha512-
|
|
438
|
+
"version": "12.12.2",
|
|
439
|
+
"resolved": "https://registry.npmjs.org/appium-adb/-/appium-adb-12.12.2.tgz",
|
|
440
|
+
"integrity": "sha512-0IdwRQySyL9p5/M4FOumqlZBDc9kmsViMnN0bxVyZjAmpAa/oyjzQglxOuIkEr+ZE/F+FafSW3p3fZ6zzmN/Zg==",
|
|
441
441
|
"license": "Apache-2.0",
|
|
442
442
|
"dependencies": {
|
|
443
443
|
"@appium/support": "^6.0.0",
|
|
@@ -457,9 +457,9 @@
|
|
|
457
457
|
}
|
|
458
458
|
},
|
|
459
459
|
"node_modules/appium-android-driver": {
|
|
460
|
-
"version": "10.
|
|
461
|
-
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.
|
|
462
|
-
"integrity": "sha512-
|
|
460
|
+
"version": "10.3.3",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/appium-android-driver/-/appium-android-driver-10.3.3.tgz",
|
|
462
|
+
"integrity": "sha512-dDuwVbH1VtavN8aZb6Tkoz6hAYW76XBvoQRvG/j/SHyMJs88jKxqyJNfF29B1857j/jx9Ab3EKvMZ393CAYwtw==",
|
|
463
463
|
"license": "Apache-2.0",
|
|
464
464
|
"dependencies": {
|
|
465
465
|
"@appium/support": "^6.0.0",
|
|
@@ -469,7 +469,7 @@
|
|
|
469
469
|
"asyncbox": "^3.0.0",
|
|
470
470
|
"axios": "^1.x",
|
|
471
471
|
"bluebird": "^3.4.7",
|
|
472
|
-
"io.appium.settings": "^5.14.
|
|
472
|
+
"io.appium.settings": "^5.14.8",
|
|
473
473
|
"lodash": "^4.17.4",
|
|
474
474
|
"lru-cache": "^10.0.1",
|
|
475
475
|
"moment": "^2.24.0",
|
|
@@ -490,9 +490,9 @@
|
|
|
490
490
|
}
|
|
491
491
|
},
|
|
492
492
|
"node_modules/appium-chromedriver": {
|
|
493
|
-
"version": "7.0.
|
|
494
|
-
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.
|
|
495
|
-
"integrity": "sha512-
|
|
493
|
+
"version": "7.0.17",
|
|
494
|
+
"resolved": "https://registry.npmjs.org/appium-chromedriver/-/appium-chromedriver-7.0.17.tgz",
|
|
495
|
+
"integrity": "sha512-heBIW4P8ztj+h7Ln+LQIS6OG0mRdzIDa0iWYcOEFxV0lZFHituVdiwXrwCgXzLalkTpq+EQX//kN8/g8OH+HiA==",
|
|
496
496
|
"license": "Apache-2.0",
|
|
497
497
|
"dependencies": {
|
|
498
498
|
"@appium/base-driver": "^9.1.0",
|
|
@@ -603,9 +603,9 @@
|
|
|
603
603
|
"license": "MIT"
|
|
604
604
|
},
|
|
605
605
|
"node_modules/axios": {
|
|
606
|
-
"version": "1.
|
|
607
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
608
|
-
"integrity": "sha512-
|
|
606
|
+
"version": "1.9.0",
|
|
607
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.9.0.tgz",
|
|
608
|
+
"integrity": "sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==",
|
|
609
609
|
"license": "MIT",
|
|
610
610
|
"dependencies": {
|
|
611
611
|
"follow-redirects": "^1.15.6",
|
|
@@ -1147,9 +1147,9 @@
|
|
|
1147
1147
|
}
|
|
1148
1148
|
},
|
|
1149
1149
|
"node_modules/detect-libc": {
|
|
1150
|
-
"version": "2.0.
|
|
1151
|
-
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.
|
|
1152
|
-
"integrity": "sha512-
|
|
1150
|
+
"version": "2.0.4",
|
|
1151
|
+
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz",
|
|
1152
|
+
"integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==",
|
|
1153
1153
|
"license": "Apache-2.0",
|
|
1154
1154
|
"optional": true,
|
|
1155
1155
|
"engines": {
|
|
@@ -1896,9 +1896,9 @@
|
|
|
1896
1896
|
}
|
|
1897
1897
|
},
|
|
1898
1898
|
"node_modules/io.appium.settings": {
|
|
1899
|
-
"version": "5.14.
|
|
1900
|
-
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.14.
|
|
1901
|
-
"integrity": "sha512-
|
|
1899
|
+
"version": "5.14.8",
|
|
1900
|
+
"resolved": "https://registry.npmjs.org/io.appium.settings/-/io.appium.settings-5.14.8.tgz",
|
|
1901
|
+
"integrity": "sha512-fApUDJp38I59oEW0oJnP+m+GOSoxRu22Nyp2etArZiWXjIDe3Bx1QVLAxdvKzfacaZ3kzdc5vmRIIAyzzQSPQw==",
|
|
1902
1902
|
"license": "Apache-2.0",
|
|
1903
1903
|
"dependencies": {
|
|
1904
1904
|
"@appium/logger": "^1.3.0",
|
|
@@ -2346,9 +2346,9 @@
|
|
|
2346
2346
|
}
|
|
2347
2347
|
},
|
|
2348
2348
|
"node_modules/moment-timezone": {
|
|
2349
|
-
"version": "0.5.
|
|
2350
|
-
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.
|
|
2351
|
-
"integrity": "sha512-
|
|
2349
|
+
"version": "0.5.48",
|
|
2350
|
+
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.48.tgz",
|
|
2351
|
+
"integrity": "sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==",
|
|
2352
2352
|
"license": "MIT",
|
|
2353
2353
|
"dependencies": {
|
|
2354
2354
|
"moment": "^2.29.4"
|
|
@@ -3678,9 +3678,9 @@
|
|
|
3678
3678
|
}
|
|
3679
3679
|
},
|
|
3680
3680
|
"node_modules/typescript": {
|
|
3681
|
-
"version": "5.8.
|
|
3682
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.
|
|
3683
|
-
"integrity": "sha512-
|
|
3681
|
+
"version": "5.8.3",
|
|
3682
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
|
|
3683
|
+
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
|
|
3684
3684
|
"dev": true,
|
|
3685
3685
|
"license": "Apache-2.0",
|
|
3686
3686
|
"bin": {
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"automated testing",
|
|
8
8
|
"android"
|
|
9
9
|
],
|
|
10
|
-
"version": "4.1.
|
|
10
|
+
"version": "4.1.5",
|
|
11
11
|
"author": "Appium Contributors",
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"repository": {
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"mocha": "^11.1.0",
|
|
133
133
|
"rimraf": "^5.0.0",
|
|
134
134
|
"semantic-release": "^24.0.0",
|
|
135
|
-
"sinon": "^
|
|
135
|
+
"sinon": "^20.0.0",
|
|
136
136
|
"semver": "^7.3.7",
|
|
137
137
|
"ts-node": "^10.9.1",
|
|
138
138
|
"typescript": "^5.4.2",
|