Table of Contents

Class SetBreakpointCommandSettings

Namespace
OpenQA.Selenium.DevTools.V146.Debugger
Assembly
Selenium.WebDriver.dll

Sets JavaScript breakpoint at a given location.

public sealed class SetBreakpointCommandSettings : ICommand
Inheritance
SetBreakpointCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

Condition

Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.

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

Property Value

string

Location

Location to set breakpoint in.

[JsonPropertyName("location")]
public Location Location { get; set; }

Property Value

Location