appium-uiautomator2-driver 4.2.1 → 4.2.3
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/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 +1 -0
- package/build/lib/method-map.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/lib/method-map.ts +1 -0
- package/npm-shrinkwrap.json +25 -25
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [4.2.3](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.2...v4.2.3) (2025-04-25)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* add deprecated: true for get clipboard ([#887](https://github.com/appium/appium-uiautomator2-driver/issues/887)) ([19c6417](https://github.com/appium/appium-uiautomator2-driver/commit/19c6417ccfc336899d09d6bdf9b4532ad625babe))
|
|
6
|
+
|
|
7
|
+
## [4.2.2](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.1...v4.2.2) (2025-04-23)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* Bump android driver ([d52988e](https://github.com/appium/appium-uiautomator2-driver/commit/d52988ee20cba853d83218fee8cedbdc33c8a91c))
|
|
12
|
+
|
|
1
13
|
## [4.2.1](https://github.com/appium/appium-uiautomator2-driver/compare/v4.2.0...v4.2.1) (2025-04-16)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
package/build/lib/driver.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
25
25
|
readonly payloadParams: {
|
|
26
26
|
readonly optional: readonly ["contentType"];
|
|
27
27
|
};
|
|
28
|
+
readonly deprecated: true;
|
|
28
29
|
};
|
|
29
30
|
};
|
|
30
31
|
readonly '/session/:sessionId/timeouts/implicit_wait': {
|
|
@@ -33,6 +34,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
33
34
|
readonly payloadParams: {
|
|
34
35
|
readonly required: readonly ["ms"];
|
|
35
36
|
};
|
|
37
|
+
readonly deprecated: true;
|
|
36
38
|
};
|
|
37
39
|
};
|
|
38
40
|
readonly '/session/:sessionId/ime/available_engines': {
|
|
@@ -66,6 +68,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
66
68
|
readonly '/session/:sessionId/window/:windowhandle/size': {
|
|
67
69
|
readonly GET: {
|
|
68
70
|
readonly command: "getWindowSize";
|
|
71
|
+
readonly deprecated: true;
|
|
69
72
|
};
|
|
70
73
|
};
|
|
71
74
|
readonly '/session/:sessionId/keys': {
|
|
@@ -74,21 +77,25 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
74
77
|
readonly payloadParams: {
|
|
75
78
|
readonly required: readonly ["value"];
|
|
76
79
|
};
|
|
80
|
+
readonly deprecated: true;
|
|
77
81
|
};
|
|
78
82
|
};
|
|
79
83
|
readonly '/session/:sessionId/element/:elementId/location': {
|
|
80
84
|
readonly GET: {
|
|
81
85
|
readonly command: "getLocation";
|
|
86
|
+
readonly deprecated: true;
|
|
82
87
|
};
|
|
83
88
|
};
|
|
84
89
|
readonly '/session/:sessionId/element/:elementId/location_in_view': {
|
|
85
90
|
readonly GET: {
|
|
86
91
|
readonly command: "getLocationInView";
|
|
92
|
+
readonly deprecated: true;
|
|
87
93
|
};
|
|
88
94
|
};
|
|
89
95
|
readonly '/session/:sessionId/element/:elementId/size': {
|
|
90
96
|
readonly GET: {
|
|
91
97
|
readonly command: "getSize";
|
|
98
|
+
readonly deprecated: true;
|
|
92
99
|
};
|
|
93
100
|
};
|
|
94
101
|
readonly '/session/:sessionId/appium/device/lock': {
|
|
@@ -97,16 +104,19 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
97
104
|
readonly payloadParams: {
|
|
98
105
|
readonly optional: readonly ["seconds"];
|
|
99
106
|
};
|
|
107
|
+
readonly deprecated: true;
|
|
100
108
|
};
|
|
101
109
|
};
|
|
102
110
|
readonly '/session/:sessionId/appium/device/unlock': {
|
|
103
111
|
readonly POST: {
|
|
104
112
|
readonly command: "unlock";
|
|
113
|
+
readonly deprecated: true;
|
|
105
114
|
};
|
|
106
115
|
};
|
|
107
116
|
readonly '/session/:sessionId/appium/device/is_locked': {
|
|
108
117
|
readonly POST: {
|
|
109
118
|
readonly command: "isLocked";
|
|
119
|
+
readonly deprecated: true;
|
|
110
120
|
};
|
|
111
121
|
};
|
|
112
122
|
readonly '/session/:sessionId/appium/start_recording_screen': {
|
|
@@ -128,6 +138,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
128
138
|
readonly '/session/:sessionId/appium/performanceData/types': {
|
|
129
139
|
readonly POST: {
|
|
130
140
|
readonly command: "getPerformanceDataTypes";
|
|
141
|
+
readonly deprecated: true;
|
|
131
142
|
};
|
|
132
143
|
};
|
|
133
144
|
readonly '/session/:sessionId/appium/getPerformanceData': {
|
|
@@ -137,6 +148,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
137
148
|
readonly required: readonly ["packageName", "dataType"];
|
|
138
149
|
readonly optional: readonly ["dataReadTimeout"];
|
|
139
150
|
};
|
|
151
|
+
readonly deprecated: true;
|
|
140
152
|
};
|
|
141
153
|
};
|
|
142
154
|
readonly '/session/:sessionId/appium/device/press_keycode': {
|
|
@@ -146,6 +158,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
146
158
|
readonly required: readonly ["keycode"];
|
|
147
159
|
readonly optional: readonly ["metastate", "flags"];
|
|
148
160
|
};
|
|
161
|
+
readonly deprecated: true;
|
|
149
162
|
};
|
|
150
163
|
};
|
|
151
164
|
readonly '/session/:sessionId/appium/device/long_press_keycode': {
|
|
@@ -155,6 +168,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
155
168
|
readonly required: readonly ["keycode"];
|
|
156
169
|
readonly optional: readonly ["metastate", "flags"];
|
|
157
170
|
};
|
|
171
|
+
readonly deprecated: true;
|
|
158
172
|
};
|
|
159
173
|
};
|
|
160
174
|
readonly '/session/:sessionId/appium/device/finger_print': {
|
|
@@ -163,6 +177,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
163
177
|
readonly payloadParams: {
|
|
164
178
|
readonly required: readonly ["fingerprintId"];
|
|
165
179
|
};
|
|
180
|
+
readonly deprecated: true;
|
|
166
181
|
};
|
|
167
182
|
};
|
|
168
183
|
readonly '/session/:sessionId/appium/device/send_sms': {
|
|
@@ -171,6 +186,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
171
186
|
readonly payloadParams: {
|
|
172
187
|
readonly required: readonly ["phoneNumber", "message"];
|
|
173
188
|
};
|
|
189
|
+
readonly deprecated: true;
|
|
174
190
|
};
|
|
175
191
|
};
|
|
176
192
|
readonly '/session/:sessionId/appium/device/gsm_call': {
|
|
@@ -179,6 +195,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
179
195
|
readonly payloadParams: {
|
|
180
196
|
readonly required: readonly ["phoneNumber", "action"];
|
|
181
197
|
};
|
|
198
|
+
readonly deprecated: true;
|
|
182
199
|
};
|
|
183
200
|
};
|
|
184
201
|
readonly '/session/:sessionId/appium/device/gsm_signal': {
|
|
@@ -187,6 +204,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
187
204
|
readonly payloadParams: {
|
|
188
205
|
readonly required: readonly ["signalStrength"];
|
|
189
206
|
};
|
|
207
|
+
readonly deprecated: true;
|
|
190
208
|
};
|
|
191
209
|
};
|
|
192
210
|
readonly '/session/:sessionId/appium/device/gsm_voice': {
|
|
@@ -195,6 +213,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
195
213
|
readonly payloadParams: {
|
|
196
214
|
readonly required: readonly ["state"];
|
|
197
215
|
};
|
|
216
|
+
readonly deprecated: true;
|
|
198
217
|
};
|
|
199
218
|
};
|
|
200
219
|
readonly '/session/:sessionId/appium/device/power_capacity': {
|
|
@@ -203,6 +222,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
203
222
|
readonly payloadParams: {
|
|
204
223
|
readonly required: readonly ["percent"];
|
|
205
224
|
};
|
|
225
|
+
readonly deprecated: true;
|
|
206
226
|
};
|
|
207
227
|
};
|
|
208
228
|
readonly '/session/:sessionId/appium/device/power_ac': {
|
|
@@ -211,6 +231,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
211
231
|
readonly payloadParams: {
|
|
212
232
|
readonly required: readonly ["state"];
|
|
213
233
|
};
|
|
234
|
+
readonly deprecated: true;
|
|
214
235
|
};
|
|
215
236
|
};
|
|
216
237
|
readonly '/session/:sessionId/appium/device/network_speed': {
|
|
@@ -219,6 +240,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
219
240
|
readonly payloadParams: {
|
|
220
241
|
readonly required: readonly ["netspeed"];
|
|
221
242
|
};
|
|
243
|
+
readonly deprecated: true;
|
|
222
244
|
};
|
|
223
245
|
};
|
|
224
246
|
readonly '/session/:sessionId/appium/device/keyevent': {
|
|
@@ -228,16 +250,19 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
228
250
|
readonly required: readonly ["keycode"];
|
|
229
251
|
readonly optional: readonly ["metastate"];
|
|
230
252
|
};
|
|
253
|
+
readonly deprecated: true;
|
|
231
254
|
};
|
|
232
255
|
};
|
|
233
256
|
readonly '/session/:sessionId/appium/device/current_activity': {
|
|
234
257
|
readonly GET: {
|
|
235
258
|
readonly command: "getCurrentActivity";
|
|
259
|
+
readonly deprecated: true;
|
|
236
260
|
};
|
|
237
261
|
};
|
|
238
262
|
readonly '/session/:sessionId/appium/device/current_package': {
|
|
239
263
|
readonly GET: {
|
|
240
264
|
readonly command: "getCurrentPackage";
|
|
265
|
+
readonly deprecated: true;
|
|
241
266
|
};
|
|
242
267
|
};
|
|
243
268
|
readonly '/session/:sessionId/appium/device/app_state': {
|
|
@@ -246,31 +271,37 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
246
271
|
readonly payloadParams: {
|
|
247
272
|
readonly required: readonly [readonly ["appId"], readonly ["bundleId"]];
|
|
248
273
|
};
|
|
274
|
+
readonly deprecated: true;
|
|
249
275
|
};
|
|
250
276
|
};
|
|
251
277
|
readonly '/session/:sessionId/appium/device/toggle_airplane_mode': {
|
|
252
278
|
readonly POST: {
|
|
253
279
|
readonly command: "toggleFlightMode";
|
|
280
|
+
readonly deprecated: true;
|
|
254
281
|
};
|
|
255
282
|
};
|
|
256
283
|
readonly '/session/:sessionId/appium/device/toggle_data': {
|
|
257
284
|
readonly POST: {
|
|
258
285
|
readonly command: "toggleData";
|
|
286
|
+
readonly deprecated: true;
|
|
259
287
|
};
|
|
260
288
|
};
|
|
261
289
|
readonly '/session/:sessionId/appium/device/toggle_wifi': {
|
|
262
290
|
readonly POST: {
|
|
263
291
|
readonly command: "toggleWiFi";
|
|
292
|
+
readonly deprecated: true;
|
|
264
293
|
};
|
|
265
294
|
};
|
|
266
295
|
readonly '/session/:sessionId/appium/device/toggle_location_services': {
|
|
267
296
|
readonly POST: {
|
|
268
297
|
readonly command: "toggleLocationServices";
|
|
298
|
+
readonly deprecated: true;
|
|
269
299
|
};
|
|
270
300
|
};
|
|
271
301
|
readonly '/session/:sessionId/appium/device/open_notifications': {
|
|
272
302
|
readonly POST: {
|
|
273
303
|
readonly command: "openNotifications";
|
|
304
|
+
readonly deprecated: true;
|
|
274
305
|
};
|
|
275
306
|
};
|
|
276
307
|
readonly '/session/:sessionId/appium/device/start_activity': {
|
|
@@ -280,16 +311,19 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
280
311
|
readonly required: readonly ["appPackage", "appActivity"];
|
|
281
312
|
readonly optional: readonly ["appWaitPackage", "appWaitActivity", "intentAction", "intentCategory", "intentFlags", "optionalIntentArguments", "dontStopAppOnReset"];
|
|
282
313
|
};
|
|
314
|
+
readonly deprecated: true;
|
|
283
315
|
};
|
|
284
316
|
};
|
|
285
317
|
readonly '/session/:sessionId/appium/device/system_bars': {
|
|
286
318
|
readonly GET: {
|
|
287
319
|
readonly command: "getSystemBars";
|
|
320
|
+
readonly deprecated: true;
|
|
288
321
|
};
|
|
289
322
|
};
|
|
290
323
|
readonly '/session/:sessionId/appium/device/display_density': {
|
|
291
324
|
readonly GET: {
|
|
292
325
|
readonly command: "getDisplayDensity";
|
|
326
|
+
readonly deprecated: true;
|
|
293
327
|
};
|
|
294
328
|
};
|
|
295
329
|
readonly '/session/:sessionId/appium/app/background': {
|
|
@@ -298,6 +332,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
298
332
|
readonly payloadParams: {
|
|
299
333
|
readonly required: readonly ["seconds"];
|
|
300
334
|
};
|
|
335
|
+
readonly deprecated: true;
|
|
301
336
|
};
|
|
302
337
|
};
|
|
303
338
|
readonly '/session/:sessionId/appium/app/strings': {
|
|
@@ -306,6 +341,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
306
341
|
readonly payloadParams: {
|
|
307
342
|
readonly optional: readonly ["language", "stringFile"];
|
|
308
343
|
};
|
|
344
|
+
readonly deprecated: true;
|
|
309
345
|
};
|
|
310
346
|
};
|
|
311
347
|
readonly '/session/:sessionId/appium/element/:elementId/value': {
|
|
@@ -314,6 +350,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
314
350
|
readonly payloadParams: {
|
|
315
351
|
readonly required: readonly ["text"];
|
|
316
352
|
};
|
|
353
|
+
readonly deprecated: true;
|
|
317
354
|
};
|
|
318
355
|
};
|
|
319
356
|
readonly '/session/:sessionId/appium/element/:elementId/replace_value': {
|
|
@@ -322,6 +359,21 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
|
|
|
322
359
|
readonly payloadParams: {
|
|
323
360
|
readonly required: readonly ["text"];
|
|
324
361
|
};
|
|
362
|
+
readonly deprecated: true;
|
|
363
|
+
};
|
|
364
|
+
};
|
|
365
|
+
readonly '/session/:sessionId/network_connection': {
|
|
366
|
+
readonly GET: {
|
|
367
|
+
readonly command: "getNetworkConnection";
|
|
368
|
+
readonly deprecated: true;
|
|
369
|
+
};
|
|
370
|
+
readonly POST: {
|
|
371
|
+
readonly command: "setNetworkConnection";
|
|
372
|
+
readonly payloadParams: {
|
|
373
|
+
readonly unwrap: "parameters";
|
|
374
|
+
readonly required: readonly ["type"];
|
|
375
|
+
};
|
|
376
|
+
readonly deprecated: true;
|
|
325
377
|
};
|
|
326
378
|
};
|
|
327
379
|
};
|
|
@@ -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,EAEX,YAAY,EACZ,mBAAmB,EACnB,YAAY,EACb,MAAM,eAAe,CAAC;AAEvB,OAAO,EAAC,aAAa,EAAQ,MAAM,uBAAuB,CAAC;AAG3D,OAAO,EAAK,KAAK,EAAO,MAAM,gBAAgB,CAAC;AAQ/C,OAAiC,EAAC,KAAK,uBAAuB,EAAC,MAAM,eAAe,CAAC;AAKrF,OAAO,KAAK,EACV,oBAAoB,EACpB,yBAAyB,EACzB,sBAAsB,EACtB,sBAAsB,EACtB,uBAAuB,EAEvB,4BAA4B,EAC5B,yBAAyB,EAC1B,MAAM,SAAS,CAAC;AACjB,OAAO,EAA4C,kBAAkB,EAAC,MAAM,gBAAgB,CAAC;AAC7F,OAAO,EACL,sBAAsB,EACtB,oBAAoB,EACpB,sBAAsB,EACtB,cAAc,EACd,cAAc,EACf,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,YAAY,EACZ,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,gBAAgB,EACjB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,yBAAyB,EAC1B,MAAM,2BAA2B,CAAC;AACnC,OAAO,EACL,oBAAoB,EACrB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,YAAY,EACZ,YAAY,EACb,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EACL,MAAM,EACN,YAAY,EACZ,cAAc,EACd,gBAAgB,EAChB,eAAe,EACf,OAAO,EACP,WAAW,EACX,OAAO,EACP,cAAc,EACd,oBAAoB,EACpB,OAAO,EACP,iBAAiB,EACjB,iBAAiB,EACjB,KAAK,EACL,KAAK,EACL,yBAAyB,EAC1B,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EACL,kBAAkB,EACnB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,EAClB,sBAAsB,EACtB,uBAAuB,EACvB,sBAAsB,EACtB,YAAY,EACZ,kBAAkB,EAClB,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,YAAY,EACZ,gBAAgB,EAChB,cAAc,EACd,UAAU,EACV,UAAU,EACV,QAAQ,EACT,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,aAAa,EACb,cAAc,EACd,cAAc,EACd,iBAAiB,EAEjB,mBAAmB,EACpB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,MAAM,EACN,cAAc,EACd,IAAI,EACL,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,iBAAiB,EACjB,wBAAwB,EACxB,aAAa,EACb,qBAAqB,EACtB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EACL,kBAAkB,EAClB,mBAAmB,EACnB,iBAAiB,EACjB,eAAe,EACf,aAAa,EACb,aAAa,EACb,kBAAkB,EACnB,MAAM,qBAAqB,CAAC;AAwH7B,cAAM,yBACJ,SAAQ,aACR,YACE,cAAc,CACZ,uBAAuB,EACvB,MAAM,EACN,YAAY,CACb;IAEH,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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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 declare 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.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"method-map.d.ts","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CASf,CAAC"}
|
package/build/lib/method-map.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"method-map.js","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":";;;AAAA,iEAAoD;AAEvC,QAAA,YAAY,GAAG;IAC1B,GAAG,qCAAa,CAAC,YAAY;IAC7B,iDAAiD,EAAE;QACjD,IAAI,EAAE;YACJ,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,EAAC,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAC;
|
|
1
|
+
{"version":3,"file":"method-map.js","sourceRoot":"","sources":["../../lib/method-map.ts"],"names":[],"mappings":";;;AAAA,iEAAoD;AAEvC,QAAA,YAAY,GAAG;IAC1B,GAAG,qCAAa,CAAC,YAAY;IAC7B,iDAAiD,EAAE;QACjD,IAAI,EAAE;YACJ,OAAO,EAAE,cAAc;YACvB,aAAa,EAAE,EAAC,QAAQ,EAAE,CAAC,aAAa,CAAC,EAAC;YAC1C,UAAU,EAAE,IAAI;SACjB;KACF;CACO,CAAC"}
|