Class LargestContentfulPaint
- Namespace
- Selenium.WebDriver.BiDi.Cdp.PerformanceTimeline
- Assembly
- Selenium.WebDriver.BiDi.Cdp.dll
See https://github.com/WICG/LargestContentfulPaint and largest_contentful_paint.idl
public sealed record LargestContentfulPaint : IEquatable<LargestContentfulPaint>
- Inheritance
-
LargestContentfulPaint
- Implements
- Inherited Members
Constructors
LargestContentfulPaint(TimeSinceEpoch, TimeSinceEpoch, double)
See https://github.com/WICG/LargestContentfulPaint and largest_contentful_paint.idl
public LargestContentfulPaint(TimeSinceEpoch RenderTime, TimeSinceEpoch LoadTime, double Size)
Parameters
RenderTimeTimeSinceEpochLoadTimeTimeSinceEpochSizedoubleThe number of pixels being painted.
Properties
ElementId
The id attribute of the element, if available.
public string? ElementId { get; init; }
Property Value
LoadTime
public TimeSinceEpoch LoadTime { get; init; }
Property Value
NodeId
public BackendNodeId? NodeId { get; init; }
Property Value
RenderTime
public TimeSinceEpoch RenderTime { get; init; }
Property Value
Size
The number of pixels being painted.
public double Size { get; init; }
Property Value
Url
The URL of the image (may be trimmed).
public string? Url { get; init; }