click_element
Click on webpage elements using CSS selectors to automate browser interactions for testing, debugging, and data extraction workflows.
Instructions
Clica em um elemento da página
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes | Seletor CSS do elemento para clicar | |
waitForNavigation | No | Aguardar navegação após o clique |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"description": "Seletor CSS do elemento para clicar",
"type": "string"
},
"waitForNavigation": {
"default": false,
"description": "Aguardar navegação após o clique",
"type": "boolean"
}
},
"required": [
"selector"
],
"type": "object"
}