type
Input text into specified elements on a webpage using a selector for browser automation tasks with Playwright MCP.
Instructions
Type text into an input element
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | No | ||
selector | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_id": {
"type": "string"
},
"selector": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}