appium-uiautomator2-driver 7.4.0 → 7.5.0

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.
Files changed (35) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build/lib/commands/aut.d.ts +10 -0
  3. package/build/lib/commands/aut.d.ts.map +1 -0
  4. package/build/lib/commands/aut.js +122 -0
  5. package/build/lib/commands/aut.js.map +1 -0
  6. package/build/lib/driver.d.ts +20 -16
  7. package/build/lib/driver.d.ts.map +1 -1
  8. package/build/lib/driver.js +17 -382
  9. package/build/lib/driver.js.map +1 -1
  10. package/build/lib/{uiautomator2.d.ts → uiautomator2-server/core.d.ts} +1 -3
  11. package/build/lib/uiautomator2-server/core.d.ts.map +1 -0
  12. package/build/lib/{uiautomator2.js → uiautomator2-server/core.js} +13 -14
  13. package/build/lib/uiautomator2-server/core.js.map +1 -0
  14. package/build/lib/uiautomator2-server/index.d.ts +4 -0
  15. package/build/lib/uiautomator2-server/index.d.ts.map +1 -0
  16. package/build/lib/uiautomator2-server/index.js +18 -0
  17. package/build/lib/uiautomator2-server/index.js.map +1 -0
  18. package/build/lib/uiautomator2-server/packages.d.ts +3 -0
  19. package/build/lib/uiautomator2-server/packages.d.ts.map +1 -0
  20. package/build/lib/uiautomator2-server/packages.js +6 -0
  21. package/build/lib/uiautomator2-server/packages.js.map +1 -0
  22. package/build/lib/uiautomator2-server/session.d.ts +25 -0
  23. package/build/lib/uiautomator2-server/session.d.ts.map +1 -0
  24. package/build/lib/uiautomator2-server/session.js +303 -0
  25. package/build/lib/uiautomator2-server/session.js.map +1 -0
  26. package/lib/commands/aut.ts +132 -0
  27. package/lib/driver.ts +35 -466
  28. package/lib/{uiautomator2.ts → uiautomator2-server/core.ts} +1 -2
  29. package/lib/uiautomator2-server/index.ts +14 -0
  30. package/lib/uiautomator2-server/packages.ts +2 -0
  31. package/lib/uiautomator2-server/session.ts +354 -0
  32. package/npm-shrinkwrap.json +8 -8
  33. package/package.json +1 -1
  34. package/build/lib/uiautomator2.d.ts.map +0 -1
  35. package/build/lib/uiautomator2.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [7.5.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.4.0...v7.5.0) (2026-05-19)
2
+
3
+ ### Features
4
+
5
+ * Refactor driver helpers to mixins ([#1002](https://github.com/appium/appium-uiautomator2-driver/issues/1002)) ([32de026](https://github.com/appium/appium-uiautomator2-driver/commit/32de0263706566a47d10870a97080186a87ffdcd))
6
+
1
7
  ## [7.4.0](https://github.com/appium/appium-uiautomator2-driver/compare/v7.3.0...v7.4.0) (2026-05-14)
2
8
 
3
9
  ### Features
@@ -0,0 +1,10 @@
1
+ import type { AndroidUiautomator2Driver } from '../driver';
2
+ /** Configures the app capability and validates the APK path before session start. */
3
+ export declare function prepareSessionApp(this: AndroidUiautomator2Driver): Promise<void>;
4
+ /** Verifies that the app APK path from capabilities exists on the host. */
5
+ export declare function checkAppPresent(this: AndroidUiautomator2Driver): Promise<void>;
6
+ /** Installs and prepares the application under test on the device. */
7
+ export declare function initAUT(this: AndroidUiautomator2Driver): Promise<void>;
8
+ /** Launches the application under test according to session capabilities. */
9
+ export declare function ensureAppStarts(this: AndroidUiautomator2Driver): Promise<void>;
10
+ //# sourceMappingURL=aut.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aut.d.ts","sourceRoot":"","sources":["../../../lib/commands/aut.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,yBAAyB,EAAC,MAAM,WAAW,CAAC;AAKzD,qFAAqF;AACrF,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CAetF;AAED,2EAA2E;AAC3E,wBAAsB,eAAe,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CAKpF;AAED,sEAAsE;AACtE,wBAAsB,OAAO,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CAwD5E;AAED,6EAA6E;AAC7E,wBAAsB,eAAe,CAAC,IAAI,EAAE,yBAAyB,GAAG,OAAO,CAAC,IAAI,CAAC,CAqCpF"}
@@ -0,0 +1,122 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.prepareSessionApp = prepareSessionApp;
4
+ exports.checkAppPresent = checkAppPresent;
5
+ exports.initAUT = initAUT;
6
+ exports.ensureAppStarts = ensureAppStarts;
7
+ const appium_android_driver_1 = require("appium-android-driver");
8
+ const support_1 = require("appium/support");
9
+ const io_appium_settings_1 = require("io.appium.settings");
10
+ const extensions_1 = require("../extensions");
11
+ const uiautomator2_server_1 = require("../uiautomator2-server");
12
+ const utils_1 = require("../utils");
13
+ /** Configures the app capability and validates the APK path before session start. */
14
+ async function prepareSessionApp() {
15
+ if (this.opts.app) {
16
+ // find and copy, or download and unzip an app url or path
17
+ this.opts.app = await this.helpers.configureApp(this.opts.app, [extensions_1.APK_EXTENSION, extensions_1.APKS_EXTENSION]);
18
+ await this.checkAppPresent();
19
+ }
20
+ else if (this.opts.appPackage) {
21
+ // the app isn't an actual app file but rather something we want to
22
+ // assume is on the device and just launch via the appPackage
23
+ this.log.info(`Starting '${this.opts.appPackage}' directly on the device`);
24
+ }
25
+ else {
26
+ this.log.info(`Neither 'app' nor 'appPackage' was set. Starting UiAutomator2 ` +
27
+ 'without the target application');
28
+ }
29
+ }
30
+ /** Verifies that the app APK path from capabilities exists on the host. */
31
+ async function checkAppPresent() {
32
+ this.log.debug('Checking whether app is actually present');
33
+ if (!this.opts.app || !(await support_1.fs.exists(this.opts.app))) {
34
+ throw this.log.errorWithException(`Could not find app apk at '${this.opts.app}'`);
35
+ }
36
+ }
37
+ /** Installs and prepares the application under test on the device. */
38
+ async function initAUT() {
39
+ // Uninstall any uninstallOtherPackages which were specified in caps
40
+ if (this.opts.uninstallOtherPackages) {
41
+ await this.uninstallOtherPackages(appium_android_driver_1.utils.parseArray(this.opts.uninstallOtherPackages), [
42
+ io_appium_settings_1.SETTINGS_HELPER_ID,
43
+ uiautomator2_server_1.SERVER_PACKAGE_ID,
44
+ uiautomator2_server_1.SERVER_TEST_PACKAGE_ID,
45
+ ]);
46
+ }
47
+ // Install any "otherApps" that were specified in caps
48
+ if (this.opts.otherApps) {
49
+ let otherApps;
50
+ try {
51
+ otherApps = appium_android_driver_1.utils.parseArray(this.opts.otherApps);
52
+ }
53
+ catch (e) {
54
+ throw this.log.errorWithException(`Could not parse "otherApps" capability: ${e.message}`);
55
+ }
56
+ otherApps = await Promise.all(otherApps.map((app) => this.helpers.configureApp(app, [extensions_1.APK_EXTENSION, extensions_1.APKS_EXTENSION])));
57
+ await this.installOtherApks(otherApps);
58
+ }
59
+ if (this.opts.app && this.opts.appPackage) {
60
+ const adb = this.requireAdb();
61
+ const appPackage = this.opts.appPackage;
62
+ if ((this.opts.noReset && !(await adb.isAppInstalled(appPackage))) || !this.opts.noReset) {
63
+ if (!this.opts.noSign &&
64
+ !(await adb.checkApkCert(this.opts.app, appPackage, {
65
+ requireDefaultCert: false,
66
+ }))) {
67
+ await (0, utils_1.signApp)(adb, this.opts.app);
68
+ }
69
+ if (!this.opts.skipUninstall) {
70
+ await adb.uninstallApk(appPackage);
71
+ }
72
+ await this.installAUT();
73
+ }
74
+ else {
75
+ this.log.debug('noReset has been requested and the app is already installed. Doing nothing');
76
+ }
77
+ }
78
+ else {
79
+ if (this.opts.fullReset) {
80
+ throw this.log.errorWithException('Full reset requires an app capability, use fastReset if app is not provided');
81
+ }
82
+ this.log.debug('No app capability. Assuming it is already on the device');
83
+ if (this.opts.fastReset && this.opts.appPackage) {
84
+ await this.resetAUT();
85
+ }
86
+ }
87
+ }
88
+ /** Launches the application under test according to session capabilities. */
89
+ async function ensureAppStarts() {
90
+ const adb = this.requireAdb();
91
+ const appPackage = this.opts.appPackage;
92
+ const appActivity = this.opts.appActivity;
93
+ if (!appPackage) {
94
+ throw this.log.errorWithException('appPackage capability is required to start the application');
95
+ }
96
+ // make sure we have an activity and package to wait for
97
+ const appWaitPackage = this.opts.appWaitPackage || appPackage;
98
+ const appWaitActivity = this.opts.appWaitActivity || appActivity;
99
+ this.log.info(`Starting '${appPackage}${appActivity ? '/' + appActivity : ''}` +
100
+ `and waiting for '${appWaitPackage}${appWaitActivity ? '/' + appWaitActivity : ''}'`);
101
+ if (this.opts.noReset && !this.opts.forceAppLaunch && (await adb.processExists(appPackage))) {
102
+ this.log.info(`'${appPackage}' is already running and noReset is enabled. ` +
103
+ `Set forceAppLaunch capability to true if the app must be forcefully restarted on session startup.`);
104
+ return;
105
+ }
106
+ await adb.startApp({
107
+ pkg: appPackage,
108
+ activity: appActivity,
109
+ action: this.opts.intentAction || 'android.intent.action.MAIN',
110
+ category: this.opts.intentCategory || 'android.intent.category.LAUNCHER',
111
+ flags: this.opts.intentFlags || '0x10200000', // FLAG_ACTIVITY_NEW_TASK | FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
112
+ waitPkg: this.opts.appWaitPackage,
113
+ waitActivity: this.opts.appWaitActivity,
114
+ waitForLaunch: this.opts.appWaitForLaunch,
115
+ waitDuration: this.opts.appWaitDuration,
116
+ optionalIntentArguments: this.opts.optionalIntentArguments,
117
+ stopApp: this.opts.forceAppLaunch || !this.opts.dontStopAppOnReset,
118
+ retry: true,
119
+ user: this.opts.userProfile,
120
+ });
121
+ }
122
+ //# sourceMappingURL=aut.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"aut.js","sourceRoot":"","sources":["../../../lib/commands/aut.ts"],"names":[],"mappings":"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"}
@@ -1,12 +1,15 @@
1
1
  import type { DriverData, ExternalDriver, InitialOpts, RouteMatcher, SingularSessionData, StringRecord, SessionCapabilities } from '@appium/types';
2
+ import { type ADB } from 'appium-adb';
2
3
  import { AndroidDriver } from 'appium-android-driver';
3
4
  import { mjpeg } from 'appium/support';
4
5
  import { type Uiautomator2Constraints } from './constraints';
5
- import type { Uiautomator2Settings, Uiautomator2DeviceDetails, Uiautomator2DriverCaps, Uiautomator2DriverOpts, Uiautomator2SessionCaps, Uiautomator2StartSessionOpts, W3CUiautomator2DriverCaps } from './types';
6
- import { UiAutomator2Server } from './uiautomator2';
6
+ import type { Uiautomator2Settings, Uiautomator2DeviceDetails, Uiautomator2DriverCaps, Uiautomator2DriverOpts, W3CUiautomator2DriverCaps } from './types';
7
+ import type { UiAutomator2Server } from './uiautomator2-server';
8
+ import { allocateMjpegServerPort, allocateSystemPort, initServer, performExecution, performPostExecSetup, performPreExecSetup, releaseMjpegServerPort, releaseSystemPort, requireServer, startSession } from './uiautomator2-server';
7
9
  import { mobileGetActionHistory, mobileScheduleAction, mobileUnscheduleAction, releaseActions } from './commands/actions';
8
10
  import { getAlertText, mobileAcceptAlert, mobileDismissAlert, postAcceptAlert, postDismissAlert } from './commands/alert';
9
11
  import { mobileInstallMultipleApks } from './commands/app-management';
12
+ import { checkAppPresent, ensureAppStarts, initAUT, prepareSessionApp } from './commands/aut';
10
13
  import { mobileGetBatteryInfo } from './commands/battery';
11
14
  import { getClipboard, setClipboard } from './commands/clipboard';
12
15
  import { active, getElementRect, getElementScreenshot, clear, mobileReplaceElementValue } from './commands/element';
@@ -1047,25 +1050,27 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
1047
1050
  getWindowRect: AndroidDriver["getWindowRect"];
1048
1051
  getWindowSize: AndroidDriver["getWindowSize"];
1049
1052
  mobileViewPortRect: typeof mobileViewPortRect;
1053
+ prepareSessionApp: typeof prepareSessionApp;
1054
+ checkAppPresent: typeof checkAppPresent;
1055
+ initAUT: typeof initAUT;
1056
+ ensureAppStarts: typeof ensureAppStarts;
1057
+ allocateSystemPort: typeof allocateSystemPort;
1058
+ releaseSystemPort: typeof releaseSystemPort;
1059
+ allocateMjpegServerPort: typeof allocateMjpegServerPort;
1060
+ releaseMjpegServerPort: typeof releaseMjpegServerPort;
1061
+ performSessionPreExecSetup: typeof performPreExecSetup;
1062
+ performSessionExecution: typeof performExecution;
1063
+ performSessionPostExecSetup: typeof performPostExecSetup;
1064
+ startUiAutomator2Session: typeof startSession;
1065
+ initUiAutomator2Server: typeof initServer;
1066
+ requireUiautomator2: typeof requireServer;
1050
1067
  constructor(opts?: InitialOpts, shouldValidateCaps?: boolean);
1051
1068
  get driverData(): {};
1052
1069
  validateDesiredCaps(caps: any): caps is Uiautomator2DriverCaps;
1053
1070
  createSession(w3cCaps1: W3CUiautomator2DriverCaps, w3cCaps2?: W3CUiautomator2DriverCaps, w3cCaps3?: W3CUiautomator2DriverCaps, driverData?: DriverData[]): Promise<any>;
1054
1071
  getDeviceDetails(): Promise<Uiautomator2DeviceDetails>;
1055
1072
  getSession(): Promise<SingularSessionData<Uiautomator2Constraints>>;
1056
- allocateSystemPort(): Promise<void>;
1057
- releaseSystemPort(): Promise<void>;
1058
- allocateMjpegServerPort(): Promise<void>;
1059
- releaseMjpegServerPort(): Promise<void>;
1060
- performSessionPreExecSetup(): Promise<StringRecord | undefined>;
1061
- performSessionExecution(capsWithSessionInfo: StringRecord): Promise<void>;
1062
- performSessionPostExecSetup(): Promise<void>;
1063
- startUiAutomator2Session(caps: Uiautomator2StartSessionOpts): Promise<Uiautomator2SessionCaps>;
1064
- initUiAutomator2Server(): Promise<UiAutomator2Server>;
1065
- initAUT(): Promise<void>;
1066
- ensureAppStarts(): Promise<void>;
1067
1073
  deleteSession(): Promise<void>;
1068
- checkAppPresent(): Promise<void>;
1069
1074
  onSettingsUpdate(): Promise<void>;
1070
1075
  proxyActive(sessionId: string): boolean;
1071
1076
  canProxy(sessionId: string): boolean;
@@ -1073,8 +1078,7 @@ declare class AndroidUiautomator2Driver extends AndroidDriver implements Externa
1073
1078
  updateSettings(settings: Uiautomator2Settings): Promise<void>;
1074
1079
  getSettings(): Promise<StringRecord>;
1075
1080
  getAppiumSessionCapabilities(): Promise<SessionCapabilities<Uiautomator2Constraints>>;
1076
- private requireAdb;
1077
- private requireUiautomator2;
1081
+ requireAdb(): ADB;
1078
1082
  }
1079
1083
  export { AndroidUiautomator2Driver };
1080
1084
  //# sourceMappingURL=driver.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"driver.d.ts","sourceRoot":"","sources":["../../lib/driver.ts"],"names":[],"mappings":"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"}