data class DescribeNodeRequest
Request object containing input parameters for the DOMDomain.describeNode command.
<init> |
Request object containing input parameters for the DOMDomain.describeNode command. DescribeNodeRequest(nodeId: NodeId? = null, backendNodeId: BackendNodeId? = null, objectId: RemoteObjectId? = null, depth: Int? = null, pierce: Boolean? = null) |
backendNodeId |
Identifier of the backend node. val backendNodeId: BackendNodeId? |
depth |
The maximum depth at which children should be retrieved, defaults to 1. Use -1 for the entire subtree or provide an integer larger than 0. val depth: Int? |
nodeId |
Identifier of the node. val nodeId: NodeId? |
objectId |
JavaScript object id of the node wrapper. val objectId: RemoteObjectId? |
pierce |
Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false). val pierce: Boolean? |