← Back to Debugger domain

Debugger.stepInto

Steps into the function call.

Domain: Debugger stable

Parameters

NameTypeDescription
breakOnAsyncCall (optional)booleanDebugger will pause on the execution of the first async task which was scheduled before next pause.
skipList (optional)arrayThe skipList specifies location ranges that should be skipped on step into.

Example Request

{
  "id": 1,
  "method": "Debugger.stepInto"
}

Example Response

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

Usage in Node.js

const result = await send('Debugger.stepInto');
console.log(result);