pl.wendigo.chrome.api.domsnapshot / GetSnapshotRequest

GetSnapshotRequest

data class GetSnapshotRequest (source)

Represents request frame that can be used with DOMSnapshot#getSnapshot operation call.

Returns a document snapshot, including the full DOM tree of the root node (including iframes, template contents, and imported documents) in a flattened array, as well as layout and white-listed computed style information for the nodes. Shadow DOM in the returned DOM tree is flattened.

Link
DOMSnapshot#getSnapshot method documentation.

See Also

DOMSnapshotOperations.getSnapshot

Constructors

<init>

GetSnapshotRequest(computedStyleWhitelist: List<String>, includeEventListeners: Boolean? = null, includePaintOrder: Boolean? = null, includeUserAgentShadowTree: Boolean? = null)

Represents request frame that can be used with DOMSnapshot#getSnapshot operation call.

Properties

computedStyleWhitelist

val computedStyleWhitelist: List<String>

Whitelist of computed styles to return.

includeEventListeners

val includeEventListeners: Boolean?

Whether or not to retrieve details of DOM listeners (default false).

includePaintOrder

val includePaintOrder: Boolean?

Whether to determine and include the paint order index of LayoutTreeNodes (default false).

includeUserAgentShadowTree

val includeUserAgentShadowTree: Boolean?

Whether to include UA shadow tree in the snapshot (default false).