clearText
Remove text from the currently focused input field on Android or iOS devices using this mobile automation tool.
Instructions
Clear text from the currently focused input field
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"
}