Class SetEventListenerBreakpointCommandSettings
- Namespace
- OpenQA.Selenium.DevTools.V146.DOMDebugger
- Assembly
- Selenium.WebDriver.dll
Sets breakpoint on particular DOM event.
public sealed class SetEventListenerBreakpointCommandSettings : ICommand
- Inheritance
-
SetEventListenerBreakpointCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
EventName
DOM Event name to stop on (any DOM event will do).
[JsonPropertyName("eventName")]
public string EventName { get; set; }
Property Value
TargetName
EventTarget interface name to stop on. If equal to "*" or not provided, will stop on any
EventTarget.
[JsonPropertyName("targetName")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? TargetName { get; set; }