class AccessibilityDomain
disable |
Disables the accessibility domain. suspend fun disable(): Unit |
enable |
Enables the accessibility domain which causes suspend fun enable(): Unit |
getChildAXNodes |
Fetches a particular accessibility node by AXNodeId.
Requires suspend fun getChildAXNodes(input: GetChildAXNodesRequest): GetChildAXNodesResponse |
getFullAXTree |
Fetches the entire accessibility tree for the root Document suspend fun getFullAXTree(input: GetFullAXTreeRequest): GetFullAXTreeResponse |
getPartialAXTree |
Fetches the accessibility node and partial accessibility tree for this DOM node, if it exists. suspend fun getPartialAXTree(input: GetPartialAXTreeRequest): GetPartialAXTreeResponse |
queryAXTree |
Query a DOM node's accessibility subtree for accessible name and role.
This command computes the name and role for all nodes in the subtree, including those that are
ignored for accessibility, and returns those that mactch the specified name and role. If no DOM
node is specified, or the DOM node does not exist, the command returns an error. If neither
suspend fun queryAXTree(input: QueryAXTreeRequest): QueryAXTreeResponse |