browser_type
Automate text input into specified web elements using Playwright MCP Server. Define a selector and text to interact with input fields for web automation tasks.
Instructions
Type text into an input field specified by selector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | ||
text | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"selector",
"text"
],
"type": "object"
}