browser_type
Types text into specified web page elements during browser automation, enabling automated form filling and input field interaction.
Instructions
Type text into an element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
element | Yes | Human-readable element description | |
ref | Yes | Exact target element reference from page snapshot | |
text | Yes | Text to type into the element |
Input Schema (JSON Schema)
{
"properties": {
"element": {
"description": "Human-readable element description",
"type": "string"
},
"ref": {
"description": "Exact target element reference from page snapshot",
"type": "string"
},
"text": {
"description": "Text to type into the element",
"type": "string"
}
},
"required": [
"element",
"ref",
"text"
],
"type": "object"
}