← Back to Debugger domain

Debugger.continueToLocation

Continues execution until specific location is reached.

Domain: Debugger stable

Parameters

NameTypeDescription
locationLocationLocation to continue to.
targetCallFrames (optional)string

Example Request

{
  "id": 1,
  "method": "Debugger.continueToLocation",
  "params": {
    "location": "location-value"
  }
}

Example Response

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

Usage in Node.js

const result = await send('Debugger.continueToLocation', {"location": "location-value"});
console.log(result);