scraping_browser_click
Click on web page elements using CSS selectors to interact with websites, navigate interfaces, and trigger actions during web automation and data extraction tasks.
Instructions
Click on an element. Avoid calling this unless you know the element selector (you can use other tools to find those)
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"
}