Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rescue background app #1055

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions lib/commands/app-management.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,16 @@
});
await this.adb.waitForActivity(appWaitPkg, appWaitAct);
};

/**
* Puts the app to background and waits the given number of seconds then restores the app
* if necessary. The call is blocking.
*
* @this {import('../driver').EspressoDriver}
* @param {number} [seconds=-1] The amount of seconds to wait between putting the app to background and restoring it.
* Any negative value means to not restore the app after putting it to background.
* @returns {Promise<void>}
*/
export async function mobileBackgroundApp(seconds = -1) {
await this.background(seconds);

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / kotlin_test

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / test (32, google_apis, x86_64)

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / test (30, google_apis, x86)

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / test (29, default, x86)

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / test (25, default, x86)

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / test (23, default, x86)

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.

Check failure on line 65 in lib/commands/app-management.js

View workflow job for this annotation

GitHub Actions / node_test (22)

The 'this' context of type 'EspressoDriver' is not assignable to method's 'this' of type 'AndroidDriver'.
}
7 changes: 7 additions & 0 deletions lib/execute-method-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,13 @@ export const executeMethodMap = {
}
},

'mobile: backgroundApp': {
command: 'mobileBackgroundApp',
params: {
optional: ['seconds'],
}
},

'mobile: setClipboard': {
command: 'mobileSetClipboard',
params: {
Expand Down
Loading