browser_list_clickables
List visible clickable buttons and links in a frame, with optional filters for role, text, CSS, enabled state, or container scope, to discover what to click without a snapshot.
Instructions
List visible clickable elements (buttons, links) in a frame. Optionally filter by role+name, text, or css; filter by enabledOnly; or scope to a container (scopeCss). Use to discover what to click without snapshot.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| css | No | Optional. Filter to elements matching this CSS selector. | |
| name | No | Optional. Filter to accessible name (regex); use with role. | |
| role | No | Optional. Filter to this ARIA role (e.g. button). Use with name for exact filter. | |
| text | No | Optional. Filter to elements whose text contains this (substring). | |
| scopeCss | No | Optional. List only clickables within this container selector. | |
| timeoutMs | No | Timeout to resolve frame and elements | |
| enabledOnly | No | Optional. If true, list only enabled elements. | |
| frameSelector | Yes | Chained iframe selector, e.g. iframe#pplayer_iframe >> iframe#modulePlayerIframe | |
| includeBoundingBox | No | Include x,y,width,height for each |