This commit is contained in:
Kevin Sawicki 2016-05-17 16:40:34 -07:00
Родитель 13cfc2d2a0
Коммит f95c46d987
1 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@ -836,16 +836,14 @@ describe('browser-window module', function () {
w.webContents.on('devtools-opened', function () {
var inputEventIntervalId = setInterval(function () {
if (w && w.devToolsWebContents) {
// Switch panels until the custom one is selected and loads
w.devToolsWebContents.sendInputEvent({
type: 'keyDown',
keyCode:'[',
modifiers: process.platform === 'darwin' ? ['meta'] : ['control']
})
w.devToolsWebContents.executeJavaScript('(' + (function () {
var lastPanelId = WebInspector.inspectorView._tabbedPane._tabs.peekLast().id
WebInspector.inspectorView.showPanel(lastPanelId);
}).toString() + ')()')
} else {
clearInterval(inputEventIntervalId)
}
}, 200)
}, 100)
})
w.loadURL('about:blank')