Class: Debugger
Class: Debugger
Альтернативный транспорт для удаленной отладки протокола Chrome.
Процесс: Main
Этот класс не экспортируется из модуля 'electron'
. Он доступен только в качестве возвращаемого значения других методов в Electron API.
Инструменты разработчика Chrome имеют специальную привязку доступную во время выполнения JavaScript, что позволяет взаимодействовать со страницами и управлять ими.
const { BrowserWindow } = require('electron')
const win = new BrowserWindow()
try {
win.webContents.debugger.attach('1.1')
} catch (err) {
console.log('Debugger attach failed : ', err)
}
win.webContents.debugger.on('detach', (event, reason) => {
console.log('Debugger detached due to : ', reason)
})
win.webContents.debugger.on('message', (event, method, params) => {
if (method === 'Network.requestWillBeSent') {
if (params.request.url === 'https://www.github.com') {
win.webContents.debugger.detach()
}
}
})
win.webContents.debugger.sendCommand('Network.enable')
События экземпляра
Событие: 'detach'
Возвращает:
- Событие типа
event
reason
string - Reason for detaching debugger.
Emitted when the debugging session is terminated. This happens either when webContents
is closed or devtools is invoked for the attached webContents
.
Событие: 'message'
Возвращает:
- Событие типа
event
method
string - Method name.params
any - Event parameters defined by the 'parameters' attribute in the remote debugging protocol.sessionId
string - Unique identifier of attached debugging session, will match the value sent fromdebugger.sendCommand
.
Возникает при отладке инструментальных событий.
Методы экземпляра
debugger.attach([protocolVersion])
protocolVersion
string (optional) - Requested debugging protocol version.
Подключает отладчик к webContents
.
debugger.isAttached()
Returns boolean
- Whether a debugger is attached to the webContents
.
debugger.detach()
Отключает отладчик от webContents
.
debugger.sendCommand(method[, commandParams, sessionId])
method
string - Method name, should be one of the methods defined by the remote debugging protocol.commandParams
any (опционально) - JSON объект с параметрами запроса.sessionId
string (optional) - send command to the target with associated debugging session id. The initial value can be obtained by sending Target.attachToTarget message.
Возвращает Promise<any>
- Promise, которое разрешается с ответом, определенным атрибутом 'returns' описания команды в протоколе удаленной отладки, или отклоняется, указывая на сбой команды.
Отправьте заданную команду на цель отладки.