browser_click
Simulate user clicks on web elements using specified selectors to automate interactions directly within a Playwright MCP Server environment for streamlined web automation tasks.
Instructions
Click on an element specified by selector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"selector": {
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}