Class EventBreakpoints
java.lang.Object
org.openqa.selenium.devtools.v123.eventbreakpoints.EventBreakpoints
EventBreakpoints permits setting JavaScript breakpoints on operations and events
occurring in native code invoked from JavaScript. Once breakpoint is hit, it is
reported through Debugger domain, similarly to regular breakpoints being hit.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic org.openqa.selenium.devtools.Command<Void>
disable()
Removes all breakpointsstatic org.openqa.selenium.devtools.Command<Void>
removeInstrumentationBreakpoint
(String eventName) Removes breakpoint on particular native event.static org.openqa.selenium.devtools.Command<Void>
setInstrumentationBreakpoint
(String eventName) Sets breakpoint on particular native event.
-
Constructor Details
-
EventBreakpoints
public EventBreakpoints()
-
-
Method Details
-
setInstrumentationBreakpoint
public static org.openqa.selenium.devtools.Command<Void> setInstrumentationBreakpoint(String eventName) Sets breakpoint on particular native event. -
removeInstrumentationBreakpoint
public static org.openqa.selenium.devtools.Command<Void> removeInstrumentationBreakpoint(String eventName) Removes breakpoint on particular native event. -
disable
Removes all breakpoints
-