Table of Contents

Class PictureTile

Namespace
Selenium.WebDriver.BiDi.Cdp.LayerTree
Assembly
Selenium.WebDriver.BiDi.Cdp.dll

Serialized fragment of layer picture along with its offset within the layer.

public sealed record PictureTile : IEquatable<PictureTile>
Inheritance
PictureTile
Implements
Inherited Members

Constructors

PictureTile(double, double, string)

Serialized fragment of layer picture along with its offset within the layer.

public PictureTile(double X, double Y, string Picture)

Parameters

X double

Offset from owning layer left boundary

Y double

Offset from owning layer top boundary

Picture string

Base64-encoded snapshot data. (Encoded as a base64 string when passed over JSON)

Properties

Picture

Base64-encoded snapshot data. (Encoded as a base64 string when passed over JSON)

public string Picture { get; init; }

Property Value

string

X

Offset from owning layer left boundary

public double X { get; init; }

Property Value

double

Y

Offset from owning layer top boundary

public double Y { get; init; }

Property Value

double