Package io.webfolder.cdp.command
Interface EventBreakpointsAsync
public interface EventBreakpointsAsync
EventBreakpoints permits setting breakpoints on particular operations and events in targets that
run JavaScript but do not have a DOM. JavaScript execution will stop on these operations as if
there was a regular breakpoint set.
-
Method Summary
Modifier and TypeMethodDescriptionremoveInstrumentationBreakpoint
(String eventName) Removes breakpoint on particular native event.setInstrumentationBreakpoint
(String eventName) Sets breakpoint on particular native event.
-
Method Details
-
removeInstrumentationBreakpoint
Removes breakpoint on particular native event.- Parameters:
eventName
- Instrumentation name to stop on.
-
setInstrumentationBreakpoint
Sets breakpoint on particular native event.- Parameters:
eventName
- Instrumentation name to stop on.
-