mcp-playwright
playwright_fill
fill out an input field
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for input field | |
value | Yes | Value to fill |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for input field",
"type": "string"
},
"value": {
"description": "Value to fill",
"type": "string"
}
},
"required": [
"selector",
"value"
],
"type": "object"
}