click
Automate browser interactions by clicking on specific elements using a selector. Simplifies web automation tasks within the MCP server environment, enabling seamless control for automation workflows.
Instructions
Click on an element by selector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | No | ||
selector | Yes |
Input Schema (JSON Schema)
{
"properties": {
"page_id": {
"type": "string"
},
"selector": {
"type": "string"
}
},
"required": [
"selector"
],
"type": "object"
}