browser_click
Automate clicking on web page elements using selectors with a Chrome browser tool designed to bypass anti-bot detection for scraping, testing, and automation tasks.
Instructions
Click an element on the page
Args:
selector: The selector of the element to click - required
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selector | Yes |
Input Schema (JSON Schema)
{
"properties": {
"selector": {
"title": "Selector",
"type": "string"
}
},
"required": [
"selector"
],
"title": "browser_clickArguments",
"type": "object"
}