playwright_click
Click elements on web pages using CSS selectors to interact with or automate actions in a browser environment. Part of the Playwright MCP Server for web automation tasks.
Instructions
Click an element on the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the element to click |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the element to click",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}