Table of Contents

Class SetBreakpointOnFunctionCallCommandSettings

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

Sets JavaScript breakpoint before each call to the given function. If another function was created from the same source as a given one, calling it will also trigger the breakpoint.

public sealed class SetBreakpointOnFunctionCallCommandSettings : ICommand
Inheritance
SetBreakpointOnFunctionCallCommandSettings
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 stop on the breakpoint if this expression evaluates to true.

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

Property Value

string

ObjectId

Function object id.

[JsonPropertyName("objectId")]
public string ObjectId { get; set; }

Property Value

string