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 Details

    • removeInstrumentationBreakpoint

      CompletableFuture<Void> removeInstrumentationBreakpoint(String eventName)
      Removes breakpoint on particular native event.
      Parameters:
      eventName - Instrumentation name to stop on.
    • setInstrumentationBreakpoint

      CompletableFuture<Void> setInstrumentationBreakpoint(String eventName)
      Sets breakpoint on particular native event.
      Parameters:
      eventName - Instrumentation name to stop on.