recentApps
Access and manage the recent apps list on Android or iOS devices using this tool within the AutoMobile mobile automation suite.
Instructions
Open the recent apps list
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| platform | Yes | Platform of the device |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"platform": {
"description": "Platform of the device",
"enum": [
"android",
"ios"
],
"type": "string"
}
},
"required": [
"platform"
],
"type": "object"
}