type
Simulate keyboard input to type text into specific web elements using a CSS selector, enabling automated form filling and interaction for testing or web scraping tasks.
Instructions
Type text into an element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}