click_element
Automate web interactions by clicking elements using CSS selectors with AutoProbeMCP. Specify a selector and optional timeout to interact with web pages programmatically.
Instructions
Click on an element by CSS selector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | CSS selector for the element to click | |
timeout | No | Timeout in milliseconds |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "CSS selector for the element to click",
"type": "string"
},
"timeout": {
"default": 5000,
"description": "Timeout in milliseconds",
"type": "number"
}
},
"required": [
"selector"
],
"type": "object"
}