← Back to Runtime domain

Runtime.runIfWaitingForDebugger

Tells inspected instance to run if it was waiting for debugger to attach.

Domain: Runtime stable

Example Request

{
  "id": 1,
  "method": "Runtime.runIfWaitingForDebugger"
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Runtime.runIfWaitingForDebugger');
console.log(result);