GetFlattenedDocumentRequest

@Serializable
data class GetFlattenedDocumentRequest(val depth: Int? = null, val pierce: Boolean? = null)

Deprecated

Deprecated in the Chrome DevTools protocol

Request object containing input parameters for the DOMDomain.getFlattenedDocument command.

Constructors

Link copied to clipboard
constructor(depth: Int? = null, pierce: Boolean? = null)

Types

Link copied to clipboard
class Builder

A builder for GetFlattenedDocumentRequest, which allows setting the optional parameters of the DOMDomain.getFlattenedDocument command via a lambda.

Properties

Link copied to clipboard
val depth: Int?

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.

Link copied to clipboard

Whether or not iframes and shadow roots should be traversed when returning the subtree (default is false).