data class AXNode
A node in the accessibility tree.
<init> |
A node in the accessibility tree. AXNode(nodeId: AXNodeId, ignored: Boolean, ignoredReasons: List<AXProperty>? = null, role: AXValue? = null, name: AXValue? = null, description: AXValue? = null, value: AXValue? = null, properties: List<AXProperty>? = null, childIds: List<AXNodeId>? = null, backendDOMNodeId: BackendNodeId? = null) |
backendDOMNodeId |
The backend ID for the associated DOM node, if any. val backendDOMNodeId: BackendNodeId? |
childIds |
IDs for each of this node's child nodes. val childIds: List<AXNodeId>? |
description |
The accessible description for this val description: AXValue? |
ignored |
Whether this node is ignored for accessibility val ignored: Boolean |
ignoredReasons |
Collection of reasons why this node is hidden. val ignoredReasons: List<AXProperty>? |
name |
The accessible name for this val name: AXValue? |
nodeId |
Unique identifier for this node. val nodeId: AXNodeId |
properties |
All other properties val properties: List<AXProperty>? |
role |
This val role: AXValue? |
value |
The value for this val value: AXValue? |