Table of Contents

Class GetPossibleBreakpointsCommandSettings

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

Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

public sealed class GetPossibleBreakpointsCommandSettings : ICommand
Inheritance
GetPossibleBreakpointsCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

End

End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

[JsonPropertyName("end")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public Location? End { get; set; }

Property Value

Location

RestrictToFunction

Only consider locations which are in the same (non-nested) function as start.

[JsonPropertyName("restrictToFunction")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? RestrictToFunction { get; set; }

Property Value

bool?

Start

Start of range to search possible breakpoint locations in.

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

Property Value

Location