mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
2.3 KiB
2.3 KiB
Home > puppeteer > Protocol > Accessibility > AXNode
Protocol.Accessibility.AXNode interface
A node in the accessibility tree.
Signature:
export interface AXNode
Properties
| Property | Type | Description |
|---|---|---|
| backendDOMNodeId | DOM.BackendNodeId | The backend ID for the associated DOM node, if any. |
| childIds | AXNodeId[] | IDs for each of this node's child nodes. |
| description | AXValue | The accessible description for this Node. |
| ignored | boolean | Whether this node is ignored for accessibility |
| ignoredReasons | AXProperty[] | Collection of reasons why this node is hidden. |
| name | AXValue | The accessible name for this Node. |
| nodeId | AXNodeId | Unique identifier for this node. |
| properties | AXProperty[] | All other properties |
| role | AXValue | This Node's role, whether explicit or implicit. |
| value | AXValue | The value for this Node. |