Table of Contents

Class Profile

Namespace
OpenQA.Selenium.DevTools.V147.Profiler
Assembly
Selenium.WebDriver.dll

Profile.

public sealed class Profile
Inheritance
Profile
Inherited Members

Properties

EndTime

Profiling end timestamp in microseconds.

[JsonPropertyName("endTime")]
public double EndTime { get; set; }

Property Value

double

Nodes

The list of profile nodes. First item is the root node.

[JsonPropertyName("nodes")]
public ProfileNode[] Nodes { get; set; }

Property Value

ProfileNode[]

Samples

Ids of samples top nodes.

[JsonPropertyName("samples")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long[]? Samples { get; set; }

Property Value

long[]

StartTime

Profiling start timestamp in microseconds.

[JsonPropertyName("startTime")]
public double StartTime { get; set; }

Property Value

double

TimeDeltas

Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.

[JsonPropertyName("timeDeltas")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long[]? TimeDeltas { get; set; }

Property Value

long[]