Table of Contents

Class TracingCompleteEventArgs

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

Signals that tracing is stopped and there is no trace buffers pending flush, all data were delivered via dataCollected events.

public sealed class TracingCompleteEventArgs : EventArgs
Inheritance
TracingCompleteEventArgs
Inherited Members

Properties

DataLossOccurred

Indicates whether some trace data is known to have been lost, e.g. because the trace ring buffer wrapped around.

[JsonPropertyName("dataLossOccurred")]
public bool DataLossOccurred { get; set; }

Property Value

bool

Stream

A handle of the stream that holds resulting trace data.

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

Property Value

string

StreamCompression

Compression format of returned stream.

[JsonPropertyName("streamCompression")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StreamCompression? StreamCompression { get; set; }

Property Value

StreamCompression?

TraceFormat

Trace data format of returned stream.

[JsonPropertyName("traceFormat")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public StreamFormat? TraceFormat { get; set; }

Property Value

StreamFormat?