type
Enter text into web form fields using CSS selectors to automate form filling, data entry, and user interaction tasks during browser automation.
Instructions
Type text into an input field
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the input field | |
text | Yes | Text to type |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the input field",
"type": "string"
},
"text": {
"description": "Text to type",
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}