Skip to content

Commit

Permalink
feat: Add mobile wrapper for backgroundApp (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Apr 25, 2023
1 parent 3a12fab commit 925f775
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Expand Up @@ -1109,6 +1109,17 @@ metastate | number | no | An integer in which each bit set to 1 represents a pre
flags | number | no | Flags for the particular key event. See [KeyEvent documentation](https://developer.android.com/reference/android/view/KeyEvent) for more details. | 0x00000001 (which is FLAG_WOKE_HERE)
isLongPress | boolean | no | Whether to emulate long key press. `false` by default. | true

### mobile: backgroundApp

Puts the app to the background and waits the given number of seconds. Then restores the app
if necessary. The call is blocking. Available since driver version 2.19.0

#### Arguments

Name | Type | Required | Description | Example
--- | --- | --- | --- | ---
seconds | number | no | 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 (the default behavior). | 5


## Applications Management

Expand All @@ -1123,6 +1134,7 @@ UiAutomator2 driver supports Appium endpoints for applications management:
- Terminate app ([mobile: terminateApp](#mobile-terminateapp))
- Start app activity ([mobile: startActivity](#mobile-startactivity))
- Query the current app state ([mobile: queryAppState](#mobile-queryappstate))
- Background app ([mobile: backgroundApp](#mobile-backgroundapp))

Refer to the corresponding Appium client tutorial to find out the names of the corresponding wrappers for these APIs.

Expand Down
21 changes: 21 additions & 0 deletions lib/commands/general.js
Expand Up @@ -114,6 +114,7 @@ extensions.executeMobile = async function (mobileCommand, opts = {}) {
terminateApp: 'mobileTerminateApp',
installApp: 'mobileInstallApp',
clearApp: 'mobileClearApp',
backgroundApp: 'mobileBackgroundApp',

startActivity: 'mobileStartActivity',
startService: 'mobileStartService',
Expand Down Expand Up @@ -301,6 +302,26 @@ commands.mobileInstallMultipleApks = async function (opts = {}) {
await this.adb.installMultipleApks(apks, opts.options);
};

/**
* @typedef {Object} BackgroundAppOptions
* @property {number} seconds 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.
*/

/**
* Puts the app to background and waits the given number of seconds Then restores the app
* if necessary. The call is blocking.
*
* @param {BackgroundAppOptions} opts
*/
commands.mobileBackgroundApp = async function mobileBackgroundApp (opts = {}) {
const {
seconds = -1,
} = opts;
return await this.background(seconds);
};

Object.assign(extensions, commands, helpers);

export default extensions;

0 comments on commit 925f775

Please sign in to comment.