Table of Contents

Class LocatorBoundingBoxResult

Namespace
Microsoft.Playwright
Assembly
Microsoft.Playwright.dll
public class LocatorBoundingBoxResult
Inheritance
LocatorBoundingBoxResult
Inherited Members

Constructors

LocatorBoundingBoxResult()

public LocatorBoundingBoxResult()

Properties

Height

the height of the element in pixels.

[Required]
[JsonPropertyName("height")]
public float Height { get; set; }

Property Value

float

Width

the width of the element in pixels.

[Required]
[JsonPropertyName("width")]
public float Width { get; set; }

Property Value

float

X

the x coordinate of the element in pixels.

[Required]
[JsonPropertyName("x")]
public float X { get; set; }

Property Value

float

Y

the y coordinate of the element in pixels.

[Required]
[JsonPropertyName("y")]
public float Y { get; set; }

Property Value

float