Table of Contents

Enum TracingBackend

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

Backend type to use for tracing. chrome uses the Chrome-integrated tracing service and is supported on all platforms. system is only supported on Chrome OS and uses the Perfetto system tracing service. auto chooses system when the perfettoConfig provided to Tracing.start specifies at least one non-Chrome data source; otherwise uses chrome.

[JsonConverter(typeof(JsonEnumMemberConverter<TracingBackend>))]
public enum TracingBackend

Fields

[EnumMember(Value = "auto")] Auto = 0

Enumerated member for the auto value.

[EnumMember(Value = "chrome")] Chrome = 1

Enumerated member for the chrome value.

[EnumMember(Value = "system")] System = 2

Enumerated member for the system value.