puppeteer_click
Automate browser interactions by clicking a specified webpage element using its CSS selector. Facilitates precise page element interaction within the Puppeteer MCP Server.
Instructions
Click an element on the page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for element to click |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for element to click",
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}