Class CaptureSnapshotResult
- Namespace
- Selenium.WebDriver.BiDi.Cdp.DOMSnapshot
- Assembly
- Selenium.WebDriver.BiDi.Cdp.dll
public sealed record CaptureSnapshotResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<CaptureSnapshotResult>
- Inheritance
-
EmptyResultCaptureSnapshotResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
CaptureSnapshotResult(ImmutableArray<DocumentSnapshot>, ImmutableArray<string>)
public CaptureSnapshotResult(ImmutableArray<DocumentSnapshot> Documents, ImmutableArray<string> Strings)
Parameters
DocumentsImmutableArray<DocumentSnapshot>The nodes in the DOM tree. The DOMNode at index 0 corresponds to the root document.
StringsImmutableArray<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
Strings
Shared string table that all string properties refer to with indexes.
public ImmutableArray<string> Strings { get; init; }