browser_iframe_click
Interact with elements inside iframes using this tool. It automates clicks on specific elements within iframes, simplifying web automation and scraping tasks on protected sites with anti-bot measures.
Instructions
Click an element inside an iframe on the page
Args:
iframeSelector: The selector of the iframe - required
selector: The selector of the element to click - required
Input Schema
Name | Required | Description | Default |
---|---|---|---|
iframeSelector | Yes | ||
selector | Yes |
Input Schema (JSON Schema)
{
"properties": {
"iframeSelector": {
"title": "Iframeselector",
"type": "string"
},
"selector": {
"title": "Selector",
"type": "string"
}
},
"required": [
"iframeSelector",
"selector"
],
"title": "browser_iframe_clickArguments",
"type": "object"
}