Table of Contents

Class AdFrameData

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

Ad frame data.

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

Constructors

AdFrameData(FrameId, double, double)

Ad frame data.

public AdFrameData(FrameId FrameId, double NetworkBytes, double CpuTime)

Parameters

FrameId FrameId

The DevTools frame token.

NetworkBytes double

The network bytes of the frame.

CpuTime double

The CPU time of the frame, in milliseconds.

Properties

CpuTime

The CPU time of the frame, in milliseconds.

public double CpuTime { get; init; }

Property Value

double

FrameId

The DevTools frame token.

public FrameId FrameId { get; init; }

Property Value

FrameId

InitialOrigin

The initial origin of the frame. To minimize the payload size, this is only sent once per frame.

public string? InitialOrigin { get; init; }

Property Value

string

NetworkBytes

The network bytes of the frame.

public double NetworkBytes { get; init; }

Property Value

double