appium-android-driver 12.4.7 → 12.4.9
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/commands/file-actions.d.ts +37 -19
- package/build/lib/commands/file-actions.d.ts.map +1 -1
- package/build/lib/commands/file-actions.js +44 -58
- package/build/lib/commands/file-actions.js.map +1 -1
- package/build/lib/commands/geolocation.d.ts +44 -36
- package/build/lib/commands/geolocation.d.ts.map +1 -1
- package/build/lib/commands/geolocation.js +38 -32
- package/build/lib/commands/geolocation.js.map +1 -1
- package/build/lib/commands/intent.d.ts +103 -107
- package/build/lib/commands/intent.d.ts.map +1 -1
- package/build/lib/commands/intent.js +103 -97
- package/build/lib/commands/intent.js.map +1 -1
- package/build/lib/commands/log.d.ts +44 -48
- package/build/lib/commands/log.d.ts.map +1 -1
- package/build/lib/commands/log.js +30 -54
- package/build/lib/commands/log.js.map +1 -1
- package/build/lib/commands/network.d.ts +59 -39
- package/build/lib/commands/network.d.ts.map +1 -1
- package/build/lib/commands/network.js +65 -45
- package/build/lib/commands/network.js.map +1 -1
- package/build/lib/commands/recordscreen.d.ts +25 -40
- package/build/lib/commands/recordscreen.d.ts.map +1 -1
- package/build/lib/commands/recordscreen.js +46 -63
- package/build/lib/commands/recordscreen.js.map +1 -1
- package/build/lib/commands/types.d.ts.map +1 -1
- package/build/lib/driver.d.ts +11 -10
- package/build/lib/driver.d.ts.map +1 -1
- package/build/lib/driver.js.map +1 -1
- package/lib/commands/{file-actions.js → file-actions.ts} +88 -74
- package/lib/commands/{geolocation.js → geolocation.ts} +85 -54
- package/lib/commands/intent.ts +422 -0
- package/lib/commands/{log.js → log.ts} +68 -73
- package/lib/commands/{network.js → network.ts} +106 -59
- package/lib/commands/{recordscreen.js → recordscreen.ts} +77 -73
- package/lib/commands/types.ts +17 -0
- package/lib/driver.ts +2 -1
- package/package.json +1 -1
- package/lib/commands/intent.js +0 -409
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [12.4.9](https://github.com/appium/appium-android-driver/compare/v12.4.8...v12.4.9) (2025-12-19)
|
|
2
|
+
|
|
3
|
+
### Miscellaneous Chores
|
|
4
|
+
|
|
5
|
+
* Migrate command modules to typescript (part3) ([#1040](https://github.com/appium/appium-android-driver/issues/1040)) ([ebc73ba](https://github.com/appium/appium-android-driver/commit/ebc73bac7433c552c41bc241bfec535c30b3b157))
|
|
6
|
+
|
|
7
|
+
## [12.4.8](https://github.com/appium/appium-android-driver/compare/v12.4.7...v12.4.8) (2025-12-19)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* Migrate command modules to typescript (part 2) ([#1039](https://github.com/appium/appium-android-driver/issues/1039)) ([163fdc6](https://github.com/appium/appium-android-driver/commit/163fdc6604a126e8a81a20f5ee54c98cfda9ecc1))
|
|
12
|
+
|
|
1
13
|
## [12.4.7](https://github.com/appium/appium-android-driver/compare/v12.4.6...v12.4.7) (2025-12-18)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
|
@@ -1,34 +1,52 @@
|
|
|
1
|
+
import type { AndroidDriver } from '../driver';
|
|
1
2
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
3
|
+
* Pulls a file from the remote device.
|
|
4
|
+
*
|
|
5
|
+
* The full path to the remote file or a specially formatted path, which
|
|
4
6
|
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
5
7
|
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
6
8
|
* use the latter `remotePath` format.
|
|
7
|
-
*
|
|
9
|
+
*
|
|
10
|
+
* @param remotePath The full path to the remote file or a specially formatted path, which
|
|
11
|
+
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
12
|
+
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
13
|
+
* use the latter `remotePath` format.
|
|
14
|
+
* @returns Promise that resolves to the file content as a base64-encoded string.
|
|
15
|
+
* @throws {errors.InvalidArgumentError} If the remote path points to a folder instead of a file.
|
|
8
16
|
*/
|
|
9
|
-
export function pullFile(this:
|
|
17
|
+
export declare function pullFile(this: AndroidDriver, remotePath: string): Promise<string>;
|
|
10
18
|
/**
|
|
11
|
-
*
|
|
12
|
-
*
|
|
19
|
+
* Pushes a file to the remote device.
|
|
20
|
+
*
|
|
21
|
+
* The full path to the remote file or a specially formatted path, which
|
|
22
|
+
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
23
|
+
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
24
|
+
* use the latter `remotePath` format.
|
|
25
|
+
*
|
|
26
|
+
* @param remotePath The full path to the remote file or a specially formatted path, which
|
|
13
27
|
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
14
28
|
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
15
29
|
* use the latter `remotePath` format.
|
|
16
|
-
* @param
|
|
17
|
-
*
|
|
30
|
+
* @param base64Data Base64-encoded content of the file to be pushed.
|
|
31
|
+
* Can be a string or an array of numbers (for Java clients that send byte arrays).
|
|
32
|
+
* @returns Promise that resolves when the file is pushed.
|
|
33
|
+
* @throws {errors.InvalidArgumentError} If the remote path points to a folder instead of a file.
|
|
18
34
|
*/
|
|
19
|
-
export function pushFile(this:
|
|
35
|
+
export declare function pushFile(this: AndroidDriver, remotePath: string, base64Data: string | number[]): Promise<void>;
|
|
20
36
|
/**
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
* @
|
|
37
|
+
* Pulls a folder from the remote device.
|
|
38
|
+
*
|
|
39
|
+
* @param remotePath The full path to the remote folder.
|
|
40
|
+
* @returns Promise that resolves to the folder content as a base64-encoded zip file string.
|
|
24
41
|
*/
|
|
25
|
-
export function pullFolder(this:
|
|
42
|
+
export declare function pullFolder(this: AndroidDriver, remotePath: string): Promise<string>;
|
|
26
43
|
/**
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
44
|
+
* Deletes a file from the remote device.
|
|
45
|
+
*
|
|
46
|
+
* @param remotePath The full path to the remote file or a file inside an application bundle
|
|
47
|
+
* (for example `@my.app.id/path/in/bundle`).
|
|
48
|
+
* @returns Promise that resolves to `true` if the file was successfully deleted, `false` if it doesn't exist.
|
|
49
|
+
* @throws {errors.InvalidArgumentError} If the remote path points to a folder instead of a file.
|
|
31
50
|
*/
|
|
32
|
-
export function mobileDeleteFile(this:
|
|
33
|
-
export type ADB = import("appium-adb").ADB;
|
|
51
|
+
export declare function mobileDeleteFile(this: AndroidDriver, remotePath: string): Promise<boolean>;
|
|
34
52
|
//# sourceMappingURL=file-actions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-actions.d.ts","sourceRoot":"","sources":["../../../lib/commands/file-actions.
|
|
1
|
+
{"version":3,"file":"file-actions.d.ts","sourceRoot":"","sources":["../../../lib/commands/file-actions.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,WAAW,CAAC;AAQ7C;;;;;;;;;;;;;;GAcG;AACH,wBAAsB,QAAQ,CAC5B,IAAI,EAAE,aAAa,EACnB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,MAAM,CAAC,CAyCjB;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAsB,QAAQ,CAC5B,IAAI,EAAE,aAAa,EACnB,UAAU,EAAE,MAAM,EAClB,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,GAC5B,OAAO,CAAC,IAAI,CAAC,CAgEf;AAED;;;;;GAKG;AACH,wBAAsB,UAAU,CAC9B,IAAI,EAAE,aAAa,EACnB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,MAAM,CAAC,CAYjB;AAED;;;;;;;GAOG;AACH,wBAAsB,gBAAgB,CACpC,IAAI,EAAE,aAAa,EACnB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,OAAO,CAAC,CAQlB"}
|
|
@@ -16,12 +16,19 @@ const CONTAINER_PATH_MARKER = '@';
|
|
|
16
16
|
const CONTAINER_PATH_PATTERN = new RegExp(`^${CONTAINER_PATH_MARKER}([^/]+)/(.+)`);
|
|
17
17
|
const ANDROID_MEDIA_RESCAN_INTENT = 'android.intent.action.MEDIA_SCANNER_SCAN_FILE';
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
*
|
|
19
|
+
* Pulls a file from the remote device.
|
|
20
|
+
*
|
|
21
|
+
* The full path to the remote file or a specially formatted path, which
|
|
22
|
+
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
23
|
+
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
24
|
+
* use the latter `remotePath` format.
|
|
25
|
+
*
|
|
26
|
+
* @param remotePath The full path to the remote file or a specially formatted path, which
|
|
21
27
|
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
22
28
|
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
23
29
|
* use the latter `remotePath` format.
|
|
24
|
-
* @returns
|
|
30
|
+
* @returns Promise that resolves to the file content as a base64-encoded string.
|
|
31
|
+
* @throws {errors.InvalidArgumentError} If the remote path points to a folder instead of a file.
|
|
25
32
|
*/
|
|
26
33
|
async function pullFile(remotePath) {
|
|
27
34
|
if (remotePath.endsWith('/')) {
|
|
@@ -44,7 +51,7 @@ async function pullFile(remotePath) {
|
|
|
44
51
|
catch (e) {
|
|
45
52
|
throw this.log.errorWithException(`Cannot access the container of '${packageId}' application. ` +
|
|
46
53
|
`Is the application installed and has 'debuggable' build option set to true? ` +
|
|
47
|
-
`Original error: ${
|
|
54
|
+
`Original error: ${e.message}`);
|
|
48
55
|
}
|
|
49
56
|
}
|
|
50
57
|
const localFile = await support_1.tempDir.path({ prefix: 'appium', suffix: '.tmp' });
|
|
@@ -62,13 +69,21 @@ async function pullFile(remotePath) {
|
|
|
62
69
|
}
|
|
63
70
|
}
|
|
64
71
|
/**
|
|
65
|
-
*
|
|
66
|
-
*
|
|
72
|
+
* Pushes a file to the remote device.
|
|
73
|
+
*
|
|
74
|
+
* The full path to the remote file or a specially formatted path, which
|
|
75
|
+
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
76
|
+
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
77
|
+
* use the latter `remotePath` format.
|
|
78
|
+
*
|
|
79
|
+
* @param remotePath The full path to the remote file or a specially formatted path, which
|
|
67
80
|
* points to an item inside an app bundle, for example `@my.app.id/my/path`.
|
|
68
81
|
* It is mandatory for the app bundle to have debugging enabled in order to
|
|
69
82
|
* use the latter `remotePath` format.
|
|
70
|
-
* @param
|
|
71
|
-
*
|
|
83
|
+
* @param base64Data Base64-encoded content of the file to be pushed.
|
|
84
|
+
* Can be a string or an array of numbers (for Java clients that send byte arrays).
|
|
85
|
+
* @returns Promise that resolves when the file is pushed.
|
|
86
|
+
* @throws {errors.InvalidArgumentError} If the remote path points to a folder instead of a file.
|
|
72
87
|
*/
|
|
73
88
|
async function pushFile(remotePath, base64Data) {
|
|
74
89
|
if (remotePath.endsWith('/')) {
|
|
@@ -76,12 +91,16 @@ async function pushFile(remotePath, base64Data) {
|
|
|
76
91
|
`'${remotePath}' is given instead`);
|
|
77
92
|
}
|
|
78
93
|
const localFile = await support_1.tempDir.path({ prefix: 'appium', suffix: '.tmp' });
|
|
94
|
+
let base64String;
|
|
79
95
|
if (lodash_1.default.isArray(base64Data)) {
|
|
80
96
|
// some clients (ahem) java, send a byte array encoding utf8 characters
|
|
81
97
|
// instead of a string, which would be infinitely better!
|
|
82
|
-
|
|
98
|
+
base64String = Buffer.from(base64Data).toString('utf8');
|
|
99
|
+
}
|
|
100
|
+
else {
|
|
101
|
+
base64String = base64Data;
|
|
83
102
|
}
|
|
84
|
-
const content = Buffer.from(
|
|
103
|
+
const content = Buffer.from(base64String, 'base64');
|
|
85
104
|
let tmpDestination = null;
|
|
86
105
|
try {
|
|
87
106
|
await support_1.fs.writeFile(localFile, content.toString('binary'), 'binary');
|
|
@@ -108,7 +127,7 @@ async function pushFile(remotePath, base64Data) {
|
|
|
108
127
|
catch (e) {
|
|
109
128
|
throw this.log.errorWithException(`Cannot access the container of '${packageId}' application. ` +
|
|
110
129
|
`Is the application installed and has 'debuggable' build option set to true? ` +
|
|
111
|
-
`Original error: ${
|
|
130
|
+
`Original error: ${e.message}`);
|
|
112
131
|
}
|
|
113
132
|
}
|
|
114
133
|
else {
|
|
@@ -129,9 +148,10 @@ async function pushFile(remotePath, base64Data) {
|
|
|
129
148
|
}
|
|
130
149
|
}
|
|
131
150
|
/**
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
* @
|
|
151
|
+
* Pulls a folder from the remote device.
|
|
152
|
+
*
|
|
153
|
+
* @param remotePath The full path to the remote folder.
|
|
154
|
+
* @returns Promise that resolves to the folder content as a base64-encoded zip file string.
|
|
135
155
|
*/
|
|
136
156
|
async function pullFolder(remotePath) {
|
|
137
157
|
const tmpRoot = await support_1.tempDir.openDir();
|
|
@@ -146,10 +166,12 @@ async function pullFolder(remotePath) {
|
|
|
146
166
|
}
|
|
147
167
|
}
|
|
148
168
|
/**
|
|
149
|
-
*
|
|
150
|
-
*
|
|
151
|
-
*
|
|
152
|
-
*
|
|
169
|
+
* Deletes a file from the remote device.
|
|
170
|
+
*
|
|
171
|
+
* @param remotePath The full path to the remote file or a file inside an application bundle
|
|
172
|
+
* (for example `@my.app.id/path/in/bundle`).
|
|
173
|
+
* @returns Promise that resolves to `true` if the file was successfully deleted, `false` if it doesn't exist.
|
|
174
|
+
* @throws {errors.InvalidArgumentError} If the remote path points to a folder instead of a file.
|
|
153
175
|
*/
|
|
154
176
|
async function mobileDeleteFile(remotePath) {
|
|
155
177
|
if (remotePath.endsWith('/')) {
|
|
@@ -161,20 +183,15 @@ async function mobileDeleteFile(remotePath) {
|
|
|
161
183
|
/**
|
|
162
184
|
* Deletes the given folder or file from the remote device
|
|
163
185
|
*
|
|
164
|
-
* @param {ADB} adb
|
|
165
|
-
* @param {string} remotePath The full path to the remote folder
|
|
166
|
-
* or file (folder names must end with a single slash)
|
|
167
186
|
* @throws {Error} If the provided remote path is invalid or
|
|
168
187
|
* the package content cannot be accessed
|
|
169
|
-
* @returns
|
|
188
|
+
* @returns `true` if the remote item has been successfully deleted.
|
|
170
189
|
* If the remote path is valid, but the remote path does not exist
|
|
171
190
|
* this function return `false`.
|
|
172
|
-
* @this {import('../driver').AndroidDriver}
|
|
173
191
|
*/
|
|
174
192
|
async function deleteFileOrFolder(adb, remotePath) {
|
|
175
193
|
const { isDir, isPresent, isFile } = createFSTests(adb);
|
|
176
194
|
let dstPath = remotePath;
|
|
177
|
-
/** @type {string|undefined} */
|
|
178
195
|
let pkgId;
|
|
179
196
|
if (remotePath.startsWith(CONTAINER_PATH_MARKER)) {
|
|
180
197
|
const [packageId, pathInContainer] = parseContainerPath(remotePath);
|
|
@@ -189,7 +206,7 @@ async function deleteFileOrFolder(adb, remotePath) {
|
|
|
189
206
|
catch (e) {
|
|
190
207
|
throw this.log.errorWithException(`Cannot access the container of '${pkgId}' application. ` +
|
|
191
208
|
`Is the application installed and has 'debuggable' build option set to true? ` +
|
|
192
|
-
`Original error: ${
|
|
209
|
+
`Original error: ${e.message}`);
|
|
193
210
|
}
|
|
194
211
|
}
|
|
195
212
|
if (!(await isPresent(dstPath, pkgId))) {
|
|
@@ -218,9 +235,7 @@ async function deleteFileOrFolder(adb, remotePath) {
|
|
|
218
235
|
/**
|
|
219
236
|
* Parses the actual destination path from the given value
|
|
220
237
|
*
|
|
221
|
-
* @
|
|
222
|
-
* `@my.app.id/my/path`
|
|
223
|
-
* @returns {Array<string>} An array, where the first item is the parsed package
|
|
238
|
+
* @returns An array, where the first item is the parsed package
|
|
224
239
|
* identifier and the second one is the actual destination path inside the package.
|
|
225
240
|
* @throws {Error} If the given string cannot be parsed
|
|
226
241
|
*/
|
|
@@ -236,9 +251,6 @@ function parseContainerPath(remotePath) {
|
|
|
236
251
|
* Scans the given file/folder on the remote device
|
|
237
252
|
* and adds matching items to the device's media library.
|
|
238
253
|
* Exceptions are ignored and written into the log.
|
|
239
|
-
*
|
|
240
|
-
* @this {import('../driver').AndroidDriver}
|
|
241
|
-
* @param {string} remotePath The file/folder path on the remote device
|
|
242
254
|
*/
|
|
243
255
|
async function scanMedia(remotePath) {
|
|
244
256
|
this.log.debug(`Performing media scan of '${remotePath}'`);
|
|
@@ -259,7 +271,7 @@ async function scanMedia(remotePath) {
|
|
|
259
271
|
}
|
|
260
272
|
}
|
|
261
273
|
catch (e) {
|
|
262
|
-
const err =
|
|
274
|
+
const err = e;
|
|
263
275
|
// FIXME: what has a `stderr` prop?
|
|
264
276
|
this.log.warn(`Ignoring an unexpected error upon media scanning of '${remotePath}': ${err.stderr ?? err.message}`);
|
|
265
277
|
}
|
|
@@ -267,25 +279,14 @@ async function scanMedia(remotePath) {
|
|
|
267
279
|
/**
|
|
268
280
|
* A small helper, which escapes single quotes in paths,
|
|
269
281
|
* so they are safe to be passed as arguments of shell commands
|
|
270
|
-
*
|
|
271
|
-
* @param {string} p The initial remote path
|
|
272
|
-
* @returns {string} The escaped path value
|
|
273
282
|
*/
|
|
274
283
|
function escapePath(p) {
|
|
275
284
|
return p.replace(/'/g, `\\'`);
|
|
276
285
|
}
|
|
277
286
|
/**
|
|
278
287
|
* Factory providing filesystem test functions using ADB
|
|
279
|
-
* @param {ADB} adb
|
|
280
288
|
*/
|
|
281
289
|
function createFSTests(adb) {
|
|
282
|
-
/**
|
|
283
|
-
*
|
|
284
|
-
* @param {string} p
|
|
285
|
-
* @param {'d'|'f'|'e'} op
|
|
286
|
-
* @param {string} [runAs]
|
|
287
|
-
* @returns
|
|
288
|
-
*/
|
|
289
290
|
const performRemoteFsCheck = async (p, op, runAs) => {
|
|
290
291
|
const passFlag = '__PASS__';
|
|
291
292
|
const checkCmd = `[ -${op} '${escapePath(p)}' ] && echo ${passFlag}`;
|
|
@@ -297,25 +298,10 @@ function createFSTests(adb) {
|
|
|
297
298
|
return false;
|
|
298
299
|
}
|
|
299
300
|
};
|
|
300
|
-
/**
|
|
301
|
-
* @param {string} p
|
|
302
|
-
* @param {string} [runAs]
|
|
303
|
-
*/
|
|
304
301
|
const isFile = async (p, runAs) => await performRemoteFsCheck(p, 'f', runAs);
|
|
305
|
-
/**
|
|
306
|
-
* @param {string} p
|
|
307
|
-
* @param {string} [runAs]
|
|
308
|
-
*/
|
|
309
302
|
const isDir = async (p, runAs) => await performRemoteFsCheck(p, 'd', runAs);
|
|
310
|
-
/**
|
|
311
|
-
* @param {string} p
|
|
312
|
-
* @param {string} [runAs]
|
|
313
|
-
*/
|
|
314
303
|
const isPresent = async (p, runAs) => await performRemoteFsCheck(p, 'e', runAs);
|
|
315
304
|
return { isFile, isDir, isPresent };
|
|
316
305
|
}
|
|
317
306
|
// #endregion
|
|
318
|
-
/**
|
|
319
|
-
* @typedef {import('appium-adb').ADB} ADB
|
|
320
|
-
*/
|
|
321
307
|
//# sourceMappingURL=file-actions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"file-actions.js","sourceRoot":"","sources":["../../../lib/commands/file-actions.
|
|
1
|
+
{"version":3,"file":"file-actions.js","sourceRoot":"","sources":["../../../lib/commands/file-actions.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,26 +1,28 @@
|
|
|
1
|
+
import type { Location } from '@appium/types';
|
|
2
|
+
import type { AndroidDriver } from '../driver';
|
|
1
3
|
/**
|
|
2
|
-
*
|
|
3
|
-
*
|
|
4
|
-
* @
|
|
4
|
+
* Sets the device geolocation.
|
|
5
|
+
*
|
|
6
|
+
* @param location The geolocation object containing latitude, longitude, and altitude.
|
|
7
|
+
* @returns Promise that resolves to the current geolocation after setting it.
|
|
5
8
|
*/
|
|
6
|
-
export function setGeoLocation(this:
|
|
9
|
+
export declare function setGeoLocation(this: AndroidDriver, location: Location): Promise<Location>;
|
|
7
10
|
/**
|
|
8
11
|
* Set the device geolocation.
|
|
9
12
|
*
|
|
10
|
-
* @
|
|
11
|
-
* @param
|
|
12
|
-
* @param
|
|
13
|
-
* @param
|
|
14
|
-
* @param
|
|
15
|
-
* @param {number} [speed] Valid speed value.
|
|
13
|
+
* @param latitude Valid latitude value.
|
|
14
|
+
* @param longitude Valid longitude value.
|
|
15
|
+
* @param altitude Valid altitude value.
|
|
16
|
+
* @param satellites Number of satellites being tracked (1-12). Available for emulators.
|
|
17
|
+
* @param speed Valid speed value.
|
|
16
18
|
* https://developer.android.com/reference/android/location/Location#setSpeed(float)
|
|
17
|
-
* @param
|
|
19
|
+
* @param bearing Valid bearing value. Available for real devices.
|
|
18
20
|
* https://developer.android.com/reference/android/location/Location#setBearing(float)
|
|
19
|
-
* @param
|
|
21
|
+
* @param accuracy Valid accuracy value. Available for real devices.
|
|
20
22
|
* https://developer.android.com/reference/android/location/Location#setAccuracy(float),
|
|
21
23
|
* https://developer.android.com/reference/android/location/Criteria
|
|
22
24
|
*/
|
|
23
|
-
export function mobileSetGeolocation(this:
|
|
25
|
+
export declare function mobileSetGeolocation(this: AndroidDriver, latitude: number, longitude: number, altitude?: number, satellites?: number, speed?: number, bearing?: number, accuracy?: number): Promise<void>;
|
|
24
26
|
/**
|
|
25
27
|
* Sends an async request to refresh the GPS cache.
|
|
26
28
|
*
|
|
@@ -28,43 +30,49 @@ export function mobileSetGeolocation(this: import("../driver").AndroidDriver, la
|
|
|
28
30
|
* installed. In case the vanilla LocationManager is used the device API level
|
|
29
31
|
* must be at version 30 (Android R) or higher.
|
|
30
32
|
*
|
|
31
|
-
* @
|
|
32
|
-
* @param {number} [timeoutMs] The maximum number of milliseconds
|
|
33
|
+
* @param timeoutMs The maximum number of milliseconds
|
|
33
34
|
* to block until GPS cache is refreshed. Providing zero or a negative
|
|
34
35
|
* value to it skips waiting completely.
|
|
35
36
|
* 20000ms by default.
|
|
36
|
-
* @returns
|
|
37
|
+
* @returns Promise that resolves when the GPS cache refresh is initiated.
|
|
37
38
|
*/
|
|
38
|
-
export function mobileRefreshGpsCache(this:
|
|
39
|
+
export declare function mobileRefreshGpsCache(this: AndroidDriver, timeoutMs?: number): Promise<void>;
|
|
39
40
|
/**
|
|
40
|
-
*
|
|
41
|
-
*
|
|
41
|
+
* Gets the current device geolocation.
|
|
42
|
+
*
|
|
43
|
+
* @returns Promise that resolves to the current geolocation object.
|
|
42
44
|
*/
|
|
43
|
-
export function getGeoLocation(this:
|
|
45
|
+
export declare function getGeoLocation(this: AndroidDriver): Promise<Location>;
|
|
44
46
|
/**
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
+
* Gets the current device geolocation.
|
|
48
|
+
*
|
|
49
|
+
* @returns Promise that resolves to the current geolocation object.
|
|
47
50
|
*/
|
|
48
|
-
export function mobileGetGeolocation(this:
|
|
51
|
+
export declare function mobileGetGeolocation(this: AndroidDriver): Promise<Location>;
|
|
49
52
|
/**
|
|
50
|
-
*
|
|
51
|
-
*
|
|
53
|
+
* Checks if location services are enabled.
|
|
54
|
+
*
|
|
55
|
+
* @returns Promise that resolves to `true` if location services are enabled, `false` otherwise.
|
|
52
56
|
*/
|
|
53
|
-
export function isLocationServicesEnabled(this:
|
|
57
|
+
export declare function isLocationServicesEnabled(this: AndroidDriver): Promise<boolean>;
|
|
54
58
|
/**
|
|
55
|
-
*
|
|
56
|
-
*
|
|
59
|
+
* Toggles the location services state.
|
|
60
|
+
*
|
|
61
|
+
* @returns Promise that resolves when the location services state is toggled.
|
|
57
62
|
*/
|
|
58
|
-
export function toggleLocationServices(this:
|
|
63
|
+
export declare function toggleLocationServices(this: AndroidDriver): Promise<void>;
|
|
59
64
|
/**
|
|
60
|
-
*
|
|
61
|
-
*
|
|
65
|
+
* Resets the geolocation to the default state.
|
|
66
|
+
*
|
|
67
|
+
* @returns Promise that resolves when the geolocation is reset.
|
|
68
|
+
* @throws {Error} If called on an emulator (geolocation reset does not work on emulators).
|
|
62
69
|
*/
|
|
63
|
-
export function mobileResetGeolocation(this:
|
|
70
|
+
export declare function mobileResetGeolocation(this: AndroidDriver): Promise<void>;
|
|
64
71
|
/**
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
* @
|
|
72
|
+
* Sets the mock location permission for a specific app.
|
|
73
|
+
*
|
|
74
|
+
* @param appId The application package identifier.
|
|
75
|
+
* @returns Promise that resolves when the mock location permission is set.
|
|
68
76
|
*/
|
|
69
|
-
export function setMockLocationApp(this:
|
|
77
|
+
export declare function setMockLocationApp(this: AndroidDriver, appId: string): Promise<void>;
|
|
70
78
|
//# sourceMappingURL=geolocation.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"geolocation.d.ts","sourceRoot":"","sources":["../../../lib/commands/geolocation.
|
|
1
|
+
{"version":3,"file":"geolocation.d.ts","sourceRoot":"","sources":["../../../lib/commands/geolocation.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAC,QAAQ,EAAC,MAAM,eAAe,CAAC;AAG5C,OAAO,KAAK,EAAC,aAAa,EAAC,MAAM,WAAW,CAAC;AAU7C;;;;;GAKG;AACH,wBAAsB,cAAc,CAClC,IAAI,EAAE,aAAa,EACnB,QAAQ,EAAE,QAAQ,GACjB,OAAO,CAAC,QAAQ,CAAC,CAenB;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAsB,oBAAoB,CACxC,IAAI,EAAE,aAAa,EACnB,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,EACjB,QAAQ,CAAC,EAAE,MAAM,EACjB,UAAU,CAAC,EAAE,MAAM,EACnB,KAAK,CAAC,EAAE,MAAM,EACd,OAAO,CAAC,EAAE,MAAM,EAChB,QAAQ,CAAC,EAAE,MAAM,GAChB,OAAO,CAAC,IAAI,CAAC,CAUf;AAED;;;;;;;;;;;;GAYG;AACH,wBAAsB,qBAAqB,CACzC,IAAI,EAAE,aAAa,EACnB,SAAS,CAAC,EAAE,MAAM,GACjB,OAAO,CAAC,IAAI,CAAC,CAEf;AAED;;;;GAIG;AACH,wBAAsB,cAAc,CAClC,IAAI,EAAE,aAAa,GAClB,OAAO,CAAC,QAAQ,CAAC,CAOnB;AAED;;;;GAIG;AACH,wBAAsB,oBAAoB,CACxC,IAAI,EAAE,aAAa,GAClB,OAAO,CAAC,QAAQ,CAAC,CAEnB;AAED;;;;GAIG;AACH,wBAAsB,yBAAyB,CAC7C,IAAI,EAAE,aAAa,GAClB,OAAO,CAAC,OAAO,CAAC,CAElB;AAED;;;;GAIG;AACH,wBAAsB,sBAAsB,CAC1C,IAAI,EAAE,aAAa,GAClB,OAAO,CAAC,IAAI,CAAC,CAQf;AAED;;;;;GAKG;AACH,wBAAsB,sBAAsB,CAC1C,IAAI,EAAE,aAAa,GAClB,OAAO,CAAC,IAAI,CAAC,CAKf;AAID;;;;;GAKG;AACH,wBAAsB,kBAAkB,CACtC,IAAI,EAAE,aAAa,EACnB,KAAK,EAAE,MAAM,GACZ,OAAO,CAAC,IAAI,CAAC,CA6Bf"}
|