get_accessibility_snapshot
Get the accessibility tree of a webpage with stable identifiers to enable precise click actions. Control tree size by limiting nodes and filtering out non-interactive elements.
Instructions
Return the page's accessibility tree with stable uids.
Each node looks like ``{"uid": "ax_1b2c", "role": "button",
"name": "Submit", "children": [...]}``. The uid can be passed to
``click_by_uid`` for deterministic interaction.
- ``max_nodes``: cap the node count to keep the response small.
- ``interesting_only``: skip ignored/structural nodes (``none``,
``generic``, ``InlineTextBox``, ``StaticText``) while keeping
their children, so the tree stays compact without losing content.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| max_nodes | No | ||
| interesting_only | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |