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: i64
Line 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§
Source§impl SetBreakpointByUrlParams
impl SetBreakpointByUrlParams
pub fn new(line_number: impl Into<i64>) -> SetBreakpointByUrlParams
Source§impl SetBreakpointByUrlParams
impl SetBreakpointByUrlParams
pub const IDENTIFIER: &'static str = "Debugger.setBreakpointByUrl"
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 moreSource§impl Command for SetBreakpointByUrlParams
impl Command for SetBreakpointByUrlParams
Source§impl Debug for SetBreakpointByUrlParams
impl Debug for SetBreakpointByUrlParams
Source§impl<'de> Deserialize<'de> for SetBreakpointByUrlParams
impl<'de> Deserialize<'de> for SetBreakpointByUrlParams
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SetBreakpointByUrlParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SetBreakpointByUrlParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Source§impl Method for SetBreakpointByUrlParams
impl Method for SetBreakpointByUrlParams
Source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
DOM.removeNode
Source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
DOM
Source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
removeNode