mobile_type
Input text into Android text fields and optionally submit using Enter key. Enables automated text entry for mobile device interaction and testing.
Instructions
Input text into the currently focused text field on Android.
Args: text: The text to input submit: Whether to submit text (press Enter key) after typing
Input Schema
Name | Required | Description | Default |
---|---|---|---|
submit | No | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"submit": {
"default": false,
"type": "boolean"
},
"text": {
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}