chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.accessibility / GetPartialAXTreeRequest

GetPartialAXTreeRequest

data class GetPartialAXTreeRequest

Request object containing input parameters for the AccessibilityDomain.getPartialAXTree command.

Constructors

<init>

Request object containing input parameters for the AccessibilityDomain.getPartialAXTree command.

GetPartialAXTreeRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null, fetchRelatives: Boolean? = null)

Properties

backendNodeId

Identifier of the backend node to get the partial accessibility tree for.

val backendNodeId: BackendNodeId?

fetchRelatives

Whether to fetch this nodes ancestors, siblings and children. Defaults to true.

val fetchRelatives: Boolean?

nodeId

Identifier of the node to get the partial accessibility tree for.

val nodeId: NodeId?

objectId

JavaScript object id of the node wrapper to get the partial accessibility tree for.

val objectId: RemoteObjectId?