Debugger.stepIntoSteps into the function call.
| Name | Type | Description |
|---|---|---|
breakOnAsyncCall (optional) | boolean | Debugger will pause on the execution of the first async task which was scheduled before next pause. |
skipList (optional) | array | The skipList specifies location ranges that should be skipped on step into. |
{
"id": 1,
"method": "Debugger.stepInto"
}
{
"id": 1,
"result": {}
}
const result = await send('Debugger.stepInto');
console.log(result);