Table of Contents

Class AdFrameData

Namespace
OpenQA.Selenium.DevTools.V151.Ads
Assembly
Selenium.WebDriver.dll

Ad frame data.

public sealed class AdFrameData
Inheritance
AdFrameData
Inherited Members

Properties

CpuTime

The CPU time of the frame, in milliseconds.

[JsonPropertyName("cpuTime")]
public double CpuTime { get; set; }

Property Value

double

FrameId

The DevTools frame token.

[JsonPropertyName("frameId")]
public string FrameId { get; set; }

Property Value

string

InitialOrigin

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

[JsonPropertyName("initialOrigin")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? InitialOrigin { get; set; }

Property Value

string

NetworkBytes

The network bytes of the frame.

[JsonPropertyName("networkBytes")]
public double NetworkBytes { get; set; }

Property Value

double