chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.domsnapshot / GetSnapshotRequest

GetSnapshotRequest

data class GetSnapshotRequest
Deprecated: Deprecated in the Chrome DevTools protocol

Request object containing input parameters for the DOMSnapshotDomain.getSnapshot command.

Constructors

<init>

Request object containing input parameters for the DOMSnapshotDomain.getSnapshot command.

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

Properties

computedStyleWhitelist

Whitelist of computed styles to return.

val computedStyleWhitelist: List<String>

includeEventListeners

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

val includeEventListeners: Boolean?

includePaintOrder

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

val includePaintOrder: Boolean?

includeUserAgentShadowTree

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

val includeUserAgentShadowTree: Boolean?