pub struct SetBreakpointByUrlParams {
pub line_number: i64,
pub url: Option<String>,
pub url_regex: Option<String>,
pub script_hash: Option<String>,
pub column_number: Option<i64>,
pub condition: Option<String>,
}Expand description
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.
setBreakpointByUrl
Fields§
§line_number: i64Line number to set breakpoint at.
url: Option<String>URL of the resources to set breakpoint on.
url_regex: Option<String>Regex pattern for the URLs of the resources to set breakpoints on. Either url or
urlRegex must be specified.
script_hash: Option<String>Script hash of the resources to set breakpoint on.
column_number: Option<i64>Offset in the line to set breakpoint at.
condition: Option<String>Expression to use as a breakpoint condition. When specified, debugger will only stop on the breakpoint if this expression evaluates to true.
Implementations§
Trait Implementations§
Source§impl Clone for SetBreakpointByUrlParams
impl Clone for SetBreakpointByUrlParams
Source§fn clone(&self) -> SetBreakpointByUrlParams
fn clone(&self) -> SetBreakpointByUrlParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more