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
Width
the width of the element in pixels.
[Required]
[JsonPropertyName("width")]
public float Width { get; set; }
Property Value
X
the x coordinate of the element in pixels.
[Required]
[JsonPropertyName("x")]
public float X { get; set; }
Property Value
Y
the y coordinate of the element in pixels.
[Required]
[JsonPropertyName("y")]
public float Y { get; set; }