type_text
Input text into focused fields on Android devices or emulators, optionally clearing existing content first for automated testing and interaction.
Instructions
Type text into the currently focused input field on the Android device/emulator.
Args:
text: The text to type into the input field
device_id: Optional device ID to target specific device/emulator
clear_first: If True, clears existing text before typing new text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clear_first | No | ||
device_id | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"clear_first": {
"default": false,
"title": "Clear First",
"type": "boolean"
},
"device_id": {
"default": null,
"title": "Device Id",
"type": "string"
},
"text": {
"title": "Text",
"type": "string"
}
},
"required": [
"text"
],
"title": "type_textArguments",
"type": "object"
}