scraping_browser_type
Type text into web page elements using CSS selectors to automate form filling and data entry tasks during web scraping and browser automation.
Instructions
Type text into an element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the element to type into | |
submit | No | Whether to submit the form after typing (press Enter) | |
text | Yes | Text to type |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the element to type into",
"type": "string"
},
"submit": {
"description": "Whether to submit the form after typing (press Enter)",
"type": "boolean"
},
"text": {
"description": "Text to type",
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}