Table of Contents

Class SetBreakpointByUrlCommandResponse

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

Response for Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in locations property. Further matching script parsing will result in subsequent breakpointResolved events issued. This logical breakpoint will survive page reloads.

public sealed class SetBreakpointByUrlCommandResponse : ICommandResponse<SetBreakpointByUrlCommandSettings>, ICommandResponse
Inheritance
SetBreakpointByUrlCommandResponse
Implements
Inherited Members
Extension Methods

Properties

BreakpointId

Id of the created breakpoint for further reference.

[JsonPropertyName("breakpointId")]
public string BreakpointId { get; set; }

Property Value

string

Locations

List of the locations this breakpoint resolved into upon addition.

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

Property Value

Location[]