Table of Contents

Class CaptureSnapshotResult

Namespace
Selenium.WebDriver.BiDi.Cdp.DOMSnapshot
Assembly
Selenium.WebDriver.BiDi.Cdp.dll
public sealed record CaptureSnapshotResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<CaptureSnapshotResult>
Inheritance
EmptyResult
CaptureSnapshotResult
Implements
IEquatable<EmptyResult>
Inherited Members
EmptyResult.ToString()
EmptyResult.GetHashCode()
EmptyResult.Equals(EmptyResult)
EmptyResult.<Clone>$()
EmptyResult.AdditionalData
EmptyResult.AdditionalMessageData

Constructors

CaptureSnapshotResult(ImmutableArray<DocumentSnapshot>, ImmutableArray<string>)

public CaptureSnapshotResult(ImmutableArray<DocumentSnapshot> Documents, ImmutableArray<string> Strings)

Parameters

Documents ImmutableArray<DocumentSnapshot>

The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document.

Strings ImmutableArray<string>

Shared string table that all string properties refer to with indexes.

Properties

Documents

The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document.

public ImmutableArray<DocumentSnapshot> Documents { get; init; }

Property Value

ImmutableArray<DocumentSnapshot>

Strings

Shared string table that all string properties refer to with indexes.

public ImmutableArray<string> Strings { get; init; }

Property Value

ImmutableArray<string>