selectAllText
Highlight all text in the focused input field on Android or iOS devices with a simple long press and tap on 'Select All' for quick automation.
Instructions
Select all text in the currently focused input field using long press + tap on 'Select All'
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"
}