appium-android-driver 12.4.6 → 12.4.7

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 CHANGED
@@ -1,3 +1,9 @@
1
+ ## [12.4.7](https://github.com/appium/appium-android-driver/compare/v12.4.6...v12.4.7) (2025-12-18)
2
+
3
+ ### Miscellaneous Chores
4
+
5
+ * Migrate command modules to typescript (part 1) ([#1038](https://github.com/appium/appium-android-driver/issues/1038)) ([de68c33](https://github.com/appium/appium-android-driver/commit/de68c33afb96b9956db783d27919fcf70da518f8))
6
+
1
7
  ## [12.4.6](https://github.com/appium/appium-android-driver/compare/v12.4.5...v12.4.6) (2025-12-18)
2
8
 
3
9
  ### Miscellaneous Chores
@@ -1,171 +1,225 @@
1
+ import type { AndroidDriver, AndroidDriverOpts } from '../driver';
2
+ import type { AppState, TerminateAppOpts } from './types';
3
+ import type { UninstallOptions, InstallOptions } from 'appium-adb';
4
+ export declare const APP_STATE: {
5
+ readonly NOT_INSTALLED: 0;
6
+ readonly NOT_RUNNING: 1;
7
+ readonly RUNNING_IN_BACKGROUND: 3;
8
+ readonly RUNNING_IN_FOREGROUND: 4;
9
+ };
10
+ export interface IsAppInstalledOptions {
11
+ /**
12
+ * The user ID for which to check the package installation.
13
+ * The `current` user id is used by default.
14
+ */
15
+ user?: string;
16
+ }
1
17
  /**
2
- * @typedef {Object} IsAppInstalledOptions
3
- * @property {string} [user] - The user id
4
- */
5
- /**
6
- * @this {AndroidDriver}
7
- * @param {string} appId
8
- * @param {IsAppInstalledOptions} [opts={}]
9
- * @returns {Promise<boolean>}
18
+ * Checks whether the specified application is installed on the device.
19
+ *
20
+ * @param appId The application package identifier to check.
21
+ * @param opts Optional parameters for the installation check.
22
+ * @returns `true` if the application is installed, `false` otherwise.
10
23
  */
11
- export function isAppInstalled(this: import("../driver").AndroidDriver, appId: string, opts?: IsAppInstalledOptions): Promise<boolean>;
24
+ export declare function isAppInstalled(this: AndroidDriver, appId: string, opts?: IsAppInstalledOptions): Promise<boolean>;
12
25
  /**
13
- * @this {AndroidDriver}
14
- * @param {string} appId Application package identifier
15
- * @param {string | number} [user] The user ID for which the package is installed.
26
+ * Checks whether the specified application is installed on the device.
27
+ *
28
+ * @param appId Application package identifier
29
+ * @param user The user ID for which the package is installed.
16
30
  * The `current` user id is used by default.
17
- * @returns {Promise<boolean>}
31
+ * @returns `true` if the application is installed, `false` otherwise.
18
32
  */
19
- export function mobileIsAppInstalled(this: import("../driver").AndroidDriver, appId: string, user?: string | number): Promise<boolean>;
33
+ export declare function mobileIsAppInstalled(this: AndroidDriver, appId: string, user?: string | number): Promise<boolean>;
20
34
  /**
21
- * @this {AndroidDriver}
22
- * @param {string} appId Application package identifier
23
- * @returns {Promise<import('./types').AppState>}
35
+ * Queries the current state of the specified application.
36
+ *
37
+ * The possible states are:
38
+ * - `APP_STATE.NOT_INSTALLED` (0): The application is not installed
39
+ * - `APP_STATE.NOT_RUNNING` (1): The application is installed but not running
40
+ * - `APP_STATE.RUNNING_IN_BACKGROUND` (3): The application is running in the background
41
+ * - `APP_STATE.RUNNING_IN_FOREGROUND` (4): The application is running in the foreground
42
+ *
43
+ * @param appId Application package identifier
44
+ * @returns The current state of the application as a numeric value.
24
45
  */
25
- export function queryAppState(this: import("../driver").AndroidDriver, appId: string): Promise<import("./types").AppState>;
46
+ export declare function queryAppState(this: AndroidDriver, appId: string): Promise<AppState>;
26
47
  /**
27
- * @this {AndroidDriver}
28
- * @param {string} appId Application package identifier
29
- * @returns {Promise<void>}
48
+ * Activates the specified application, bringing it to the foreground.
49
+ *
50
+ * This is equivalent to launching the application if it's not already running,
51
+ * or bringing it to the foreground if it's running in the background.
52
+ *
53
+ * @param appId Application package identifier
30
54
  */
31
- export function activateApp(this: import("../driver").AndroidDriver, appId: string): Promise<void>;
55
+ export declare function activateApp(this: AndroidDriver, appId: string): Promise<void>;
32
56
  /**
33
- * @this {AndroidDriver}
34
- * @param {string} appId
35
- * @param {Omit<import('appium-adb').UninstallOptions, 'appId'>} opts
36
- * @returns {Promise<boolean>}
57
+ * Removes (uninstalls) the specified application from the device.
58
+ *
59
+ * @param appId The application package identifier to remove.
60
+ * @param opts Optional uninstall options. See {@link UninstallOptions} for available options.
61
+ * @returns `true` if the application was successfully uninstalled, `false` otherwise.
37
62
  */
38
- export function removeApp(this: import("../driver").AndroidDriver, appId: string, opts?: Omit<import("appium-adb").UninstallOptions, "appId">): Promise<boolean>;
63
+ export declare function removeApp(this: AndroidDriver, appId: string, opts?: Omit<UninstallOptions, 'appId'>): Promise<boolean>;
39
64
  /**
40
- * @this {import('../driver').AndroidDriver}
41
- * @param {string} appId Application package identifier
42
- * @param {number} [timeout] The count of milliseconds to wait until the
65
+ * @param appId Application package identifier
66
+ * @param timeout The count of milliseconds to wait until the
43
67
  * app is uninstalled.
44
- * @param {boolean} [keepData] Set to true in order to keep the
68
+ * @param keepData Set to true in order to keep the
45
69
  * application data and cache folders after uninstall.
46
- * @param {boolean} [skipInstallCheck] Whether to check if the app is installed prior to
70
+ * @param skipInstallCheck Whether to check if the app is installed prior to
47
71
  * uninstalling it. By default this is checked.
48
- * @returns {Promise<boolean>}
49
72
  */
50
- export function mobileRemoveApp(this: import("../driver").AndroidDriver, appId: string, timeout?: number, keepData?: boolean, skipInstallCheck?: boolean): Promise<boolean>;
73
+ export declare function mobileRemoveApp(this: AndroidDriver, appId: string, timeout?: number, keepData?: boolean, skipInstallCheck?: boolean): Promise<boolean>;
51
74
  /**
52
- * @this {AndroidDriver}
53
- * @param {string} appId
54
- * @param {import('./types').TerminateAppOpts} [options={}]
55
- * @returns {Promise<boolean>}
75
+ * Terminates the specified application.
76
+ *
77
+ * This method forcefully stops the application and waits for it to be terminated.
78
+ * It checks that all process IDs belonging to the application have been stopped.
79
+ *
80
+ * @param appId The application package identifier to terminate.
81
+ * @param options Optional termination options. See {@link TerminateAppOpts} for available options.
82
+ * @returns `true` if the application was successfully terminated, `false` if it was not running.
83
+ * @throws {Error} If the application is still running after the timeout period.
56
84
  */
57
- export function terminateApp(this: import("../driver").AndroidDriver, appId: string, options?: import("./types").TerminateAppOpts): Promise<boolean>;
85
+ export declare function terminateApp(this: AndroidDriver, appId: string, options?: TerminateAppOpts): Promise<boolean>;
58
86
  /**
59
- * @this {AndroidDriver}
60
- * @param {string} appId Application package identifier
61
- * @param {number|string} [timeout] The count of milliseconds to wait until the app is terminated.
87
+ * Terminates the specified application.
88
+ *
89
+ * This method forcefully stops the application and waits for it to be terminated.
90
+ * It checks that all process IDs belonging to the application have been stopped.
91
+ *
92
+ * @param appId Application package identifier
93
+ * @param timeout The count of milliseconds to wait until the app is terminated.
62
94
  * 500ms by default.
63
- * @returns {Promise<boolean>}
95
+ * @returns `true` if the application was successfully terminated, `false` if it was not running.
96
+ * @throws {Error} If the application is still running after the timeout period.
64
97
  */
65
- export function mobileTerminateApp(this: import("../driver").AndroidDriver, appId: string, timeout?: number | string): Promise<boolean>;
98
+ export declare function mobileTerminateApp(this: AndroidDriver, appId: string, timeout?: number | string): Promise<boolean>;
66
99
  /**
67
- * @this {AndroidDriver}
68
- * @param {string} appPath
69
- * @param {Omit<import('appium-adb').InstallOptions, 'appId'>} opts
70
- * @returns {Promise<void>}
100
+ * Installs the specified application on the device.
101
+ *
102
+ * The application file will be configured and validated before installation.
103
+ * Supported file formats are: `.apk`, `.apks`.
104
+ *
105
+ * @param appPath The path to the application file to install.
106
+ * Can be a local file path or a URL.
107
+ * @param opts Optional installation options. See {@link InstallOptions} for available options.
71
108
  */
72
- export function installApp(this: import("../driver").AndroidDriver, appPath: string, opts: Omit<import("appium-adb").InstallOptions, "appId">): Promise<void>;
109
+ export declare function installApp(this: AndroidDriver, appPath: string, opts: Omit<InstallOptions, 'appId'>): Promise<void>;
73
110
  /**
74
- * @this {AndroidDriver}
75
- * @param {string} appPath
76
- * @param {boolean} [checkVersion]
77
- * @param {number} [timeout] The count of milliseconds to wait until the app is installed.
111
+ * @param appPath
112
+ * @param checkVersion
113
+ * @param timeout The count of milliseconds to wait until the app is installed.
78
114
  * 20000ms by default.
79
- * @param {boolean} [allowTestPackages] Set to true in order to allow test packages installation.
115
+ * @param allowTestPackages Set to true in order to allow test packages installation.
80
116
  * `false` by default.
81
- * @param {boolean} [useSdcard] Set to true to install the app on sdcard instead of the device memory.
117
+ * @param useSdcard Set to true to install the app on sdcard instead of the device memory.
82
118
  * `false` by default.
83
- * @param {boolean} [grantPermissions] Set to true in order to grant all the
119
+ * @param grantPermissions Set to true in order to grant all the
84
120
  * permissions requested in the application's manifest automatically after the installation is completed
85
121
  * under Android 6+. `false` by default.
86
- * @param {boolean} [replace] Set it to false if you don't want the application to be upgraded/reinstalled
122
+ * @param replace Set it to false if you don't want the application to be upgraded/reinstalled
87
123
  * if it is already present on the device. `true` by default.
88
- * @param {boolean} [noIncremental] Forcefully disables incremental installs if set to `true`.
124
+ * @param noIncremental Forcefully disables incremental installs if set to `true`.
89
125
  * Read https://developer.android.com/preview/features#incremental for more details.
90
126
  * `false` by default.
91
- * @returns {Promise<void>}
92
127
  */
93
- export function mobileInstallApp(this: import("../driver").AndroidDriver, appPath: string, checkVersion?: boolean, timeout?: number, allowTestPackages?: boolean, useSdcard?: boolean, grantPermissions?: boolean, replace?: boolean, noIncremental?: boolean): Promise<void>;
128
+ export declare function mobileInstallApp(this: AndroidDriver, appPath: string, checkVersion?: boolean, timeout?: number, allowTestPackages?: boolean, useSdcard?: boolean, grantPermissions?: boolean, replace?: boolean, noIncremental?: boolean): Promise<void>;
94
129
  /**
95
- * @this {AndroidDriver}
96
- * @param {string} appId Application package identifier
97
- * @returns {Promise<void>}
130
+ * Clears the application data and cache for the specified application.
131
+ *
132
+ * This is equivalent to running `adb shell pm clear <appId>`.
133
+ * All user data, cache, and settings for the application will be removed.
134
+ *
135
+ * @param appId Application package identifier
98
136
  */
99
- export function mobileClearApp(this: import("../driver").AndroidDriver, appId: string): Promise<void>;
137
+ export declare function mobileClearApp(this: AndroidDriver, appId: string): Promise<void>;
100
138
  /**
101
- * @this {AndroidDriver}
102
- * @returns {Promise<string>}
139
+ * Retrieves the name of the currently focused activity.
140
+ *
141
+ * @returns The fully qualified name of the current activity (e.g., 'com.example.app.MainActivity').
103
142
  */
104
- export function getCurrentActivity(this: import("../driver").AndroidDriver): Promise<string>;
143
+ export declare function getCurrentActivity(this: AndroidDriver): Promise<string>;
105
144
  /**
106
- * @this {AndroidDriver}
107
- * @returns {Promise<string>}
145
+ * Retrieves the package name of the currently focused application.
146
+ *
147
+ * @returns The package identifier of the current application (e.g., 'com.example.app').
108
148
  */
109
- export function getCurrentPackage(this: import("../driver").AndroidDriver): Promise<string>;
149
+ export declare function getCurrentPackage(this: AndroidDriver): Promise<string>;
110
150
  /**
111
- * @this {AndroidDriver}
112
- * @param {number} seconds
113
- * @returns {Promise<string|true>}
151
+ * Puts the application in the background for the specified duration.
152
+ *
153
+ * If a negative value is provided, the app will be sent to background and not restored.
154
+ * Otherwise, the app will be restored to the foreground after the specified duration.
155
+ *
156
+ * @param seconds The number of seconds to keep the app in the background.
157
+ * A negative value means to not restore the app after putting it to background.
158
+ * @returns `true` if the app was successfully restored, or the result of `startApp` if restoration was attempted.
114
159
  */
115
- export function background(this: import("../driver").AndroidDriver, seconds: number): Promise<string | true>;
160
+ export declare function background(this: AndroidDriver, seconds: number): Promise<string | true>;
116
161
  /**
117
162
  * Puts the app to background and waits the given number of seconds then restores the app
118
163
  * if necessary. The call is blocking.
119
164
  *
120
- * @this {AndroidDriver}
121
- * @param {number} [seconds=-1] The amount of seconds to wait between putting the app to background and restoring it.
165
+ * @param seconds The amount of seconds to wait between putting the app to background and restoring it.
122
166
  * Any negative value means to not restore the app after putting it to background.
123
- * @returns {Promise<void>}
124
167
  */
125
- export function mobileBackgroundApp(this: import("../driver").AndroidDriver, seconds?: number): Promise<void>;
168
+ export declare function mobileBackgroundApp(this: AndroidDriver, seconds?: number): Promise<void>;
126
169
  /**
127
- * @this {AndroidDriver}
128
- * @param {import('../driver').AndroidDriverOpts?} [opts=null]
129
- * @returns {Promise<void>}
170
+ * Resets the Application Under Test (AUT).
171
+ *
172
+ * The reset behavior depends on the driver options:
173
+ * - If `fastReset` is enabled: Stops the app and clears its data
174
+ * - If `fullReset` is enabled: Uninstalls and reinstalls the app
175
+ * - If neither is enabled: Only stops the app
176
+ *
177
+ * @param opts Optional driver options. If not provided, uses the current session options.
178
+ * @throws {Error} If `appPackage` is not specified or if the app cannot be reset.
130
179
  */
131
- export function resetAUT(this: import("../driver").AndroidDriver, opts?: import("../driver").AndroidDriverOpts | null): Promise<void>;
180
+ export declare function resetAUT(this: AndroidDriver, opts?: AndroidDriverOpts | null): Promise<void>;
132
181
  /**
133
- * @this {AndroidDriver}
134
- * @param {import('../driver').AndroidDriverOpts?} [opts=null]
135
- * @returns {Promise<void>}
182
+ * Installs the Application Under Test (AUT) on the device.
183
+ *
184
+ * If `fullReset` is enabled, this will perform a full reset (uninstall and reinstall).
185
+ * Otherwise, it will install or upgrade the app if needed. If `fastReset` is enabled
186
+ * and the app was already installed, it will perform a fast reset after installation.
187
+ *
188
+ * @param opts Optional driver options. If not provided, uses the current session options.
189
+ * @throws {Error} If `app` or `appPackage` options are not specified.
136
190
  */
137
- export function installAUT(this: import("../driver").AndroidDriver, opts?: import("../driver").AndroidDriverOpts | null): Promise<void>;
191
+ export declare function installAUT(this: AndroidDriver, opts?: AndroidDriverOpts | null): Promise<void>;
138
192
  /**
139
- * @this {AndroidDriver}
140
- * @param {string[]} otherApps
141
- * @param {import('../driver').AndroidDriverOpts?} [opts=null]
142
- * @returns {Promise<void>}
193
+ * Installs multiple additional APK files on the device.
194
+ *
195
+ * All APKs are installed asynchronously in parallel. This is useful for installing
196
+ * dependencies or additional applications required for testing.
197
+ *
198
+ * @param otherApps An array of paths to APK files to install.
199
+ * Each path can be a local file path or a URL.
200
+ * @param opts Optional driver options. If not provided, uses the current session options.
143
201
  */
144
- export function installOtherApks(this: import("../driver").AndroidDriver, otherApps: string[], opts?: import("../driver").AndroidDriverOpts | null): Promise<void>;
202
+ export declare function installOtherApks(this: AndroidDriver, otherApps: string[], opts?: AndroidDriverOpts | null): Promise<void>;
145
203
  /**
146
- * @this {AndroidDriver}
147
- * @param {string[]} appPackages
148
- * @param {string[]} [filterPackages=[]]
149
- * @returns {Promise<void>}
204
+ * Uninstalls the specified packages from the device.
205
+ *
206
+ * If `appPackages` contains `'*'`, all third-party packages will be uninstalled
207
+ * (excluding packages in `filterPackages`).
208
+ *
209
+ * @param appPackages An array of package names to uninstall, or `['*']` to uninstall all third-party packages.
210
+ * @param filterPackages An array of package names to exclude from uninstallation.
211
+ * Only used when `appPackages` contains `'*'`.
150
212
  */
151
- export function uninstallOtherPackages(this: import("../driver").AndroidDriver, appPackages: string[], filterPackages?: string[]): Promise<void>;
213
+ export declare function uninstallOtherPackages(this: AndroidDriver, appPackages: string[], filterPackages?: string[]): Promise<void>;
152
214
  /**
153
- * @this {AndroidDriver}
154
- * @param {string[]} [filterPackages=[]]
155
- * @returns {Promise<string[]>}
215
+ * Retrieves a list of all third-party packages installed on the device.
216
+ *
217
+ * Third-party packages are those that are not part of the system installation.
218
+ * This is equivalent to running `adb shell pm list packages -3`.
219
+ *
220
+ * @param filterPackages An array of package names to exclude from the results.
221
+ * @returns An array of third-party package names, excluding those in `filterPackages`.
222
+ * Returns an empty array if the command fails.
156
223
  */
157
- export function getThirdPartyPackages(this: import("../driver").AndroidDriver, filterPackages?: string[]): Promise<string[]>;
158
- export namespace APP_STATE {
159
- let NOT_INSTALLED: 0;
160
- let NOT_RUNNING: 1;
161
- let RUNNING_IN_BACKGROUND: 3;
162
- let RUNNING_IN_FOREGROUND: 4;
163
- }
164
- export type IsAppInstalledOptions = {
165
- /**
166
- * - The user id
167
- */
168
- user?: string | undefined;
169
- };
170
- export type AndroidDriver = import("../driver").AndroidDriver;
224
+ export declare function getThirdPartyPackages(this: AndroidDriver, filterPackages?: string[]): Promise<string[]>;
171
225
  //# sourceMappingURL=app-management.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"app-management.d.ts","sourceRoot":"","sources":["../../../lib/commands/app-management.js"],"names":[],"mappings":"AAiBA;;;GAGG;AAEH;;;;;GAKG;AACH,+EAJW,MAAM,SACN,qBAAqB,GACnB,OAAO,CAAC,OAAO,CAAC,CAI5B;AAED;;;;;;GAMG;AACH,qFALW,MAAM,SACN,MAAM,GAAG,MAAM,GAEb,OAAO,CAAC,OAAO,CAAC,CAQ5B;AAED;;;;GAIG;AACH,8EAHW,MAAM,GACJ,OAAO,CAAC,OAAO,SAAS,EAAE,QAAQ,CAAC,CAiB/C;AAED;;;;GAIG;AACH,4EAHW,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CAIzB;AAED;;;;;GAKG;AACH,0EAJW,MAAM,SACN,IAAI,CAAC,OAAO,YAAY,EAAE,gBAAgB,EAAE,OAAO,CAAC,GAClD,OAAO,CAAC,OAAO,CAAC,CAI5B;AAED;;;;;;;;;;GAUG;AACH,gFATW,MAAM,YACN,MAAM,aAEN,OAAO,qBAEP,OAAO,GAEL,OAAO,CAAC,OAAO,CAAC,CAQ5B;AAED;;;;;GAKG;AACH,6EAJW,MAAM,YACN,OAAO,SAAS,EAAE,gBAAgB,GAChC,OAAO,CAAC,OAAO,CAAC,CAwD5B;AAED;;;;;;GAMG;AACH,mFALW,MAAM,YACN,MAAM,GAAC,MAAM,GAEX,OAAO,CAAC,OAAO,CAAC,CAM5B;AAED;;;;;GAKG;AACH,6EAJW,MAAM,QACN,IAAI,CAAC,OAAO,YAAY,EAAE,cAAc,EAAE,OAAO,CAAC,GAChD,OAAO,CAAC,IAAI,CAAC,CAKzB;AAED;;;;;;;;;;;;;;;;;;;GAmBG;AACH,mFAlBW,MAAM,iBACN,OAAO,YACP,MAAM,sBAEN,OAAO,cAEP,OAAO,qBAEP,OAAO,YAGP,OAAO,kBAEP,OAAO,GAGL,OAAO,CAAC,IAAI,CAAC,CA8BzB;AAED;;;;GAIG;AACH,+EAHW,MAAM,GACJ,OAAO,CAAC,IAAI,CAAC,CAIzB;AAED;;;GAGG;AACH,6EAFa,OAAO,CAAC,MAAM,CAAC,CAI3B;AAED;;;GAGG;AACH,4EAFa,OAAO,CAAC,MAAM,CAAC,CAI3B;AAED;;;;GAIG;AACH,6EAHW,MAAM,GACJ,OAAO,CAAC,MAAM,GAAC,IAAI,CAAC,CAyEhC;AAED;;;;;;;;GAQG;AACH,uFAJW,MAAM,GAEJ,OAAO,CAAC,IAAI,CAAC,CAIzB;AAED;;;;GAIG;AACH,yEAHW,OAAO,WAAW,EAAE,iBAAiB,OAAC,GACpC,OAAO,CAAC,IAAI,CAAC,CA8DzB;AAED;;;;GAIG;AACH,2EAHW,OAAO,WAAW,EAAE,iBAAiB,OAAC,GACpC,OAAO,CAAC,IAAI,CAAC,CAqCzB;AAED;;;;;GAKG;AACH,qFAJW,MAAM,EAAE,SACR,OAAO,WAAW,EAAE,iBAAiB,OAAC,GACpC,OAAO,CAAC,IAAI,CAAC,CAoBzB;AAED;;;;;GAKG;AACH,6FAJW,MAAM,EAAE,mBACR,MAAM,EAAE,GACN,OAAO,CAAC,IAAI,CAAC,CAUzB;AAED;;;;GAIG;AACH,gGAHW,MAAM,EAAE,GACN,OAAO,CAAC,MAAM,EAAE,CAAC,CAe7B;;;;;;;;;;;;;4BAGY,OAAO,WAAW,EAAE,aAAa"}
1
+ {"version":3,"file":"app-management.d.ts","sourceRoot":"","sources":["../../../lib/commands/app-management.ts"],"names":[],"mappings":"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"}