This commit is contained in:
Kevin Sawicki 2016-12-20 09:07:48 -08:00 коммит произвёл Birunthan Mohanathas
Родитель 602db2e04f
Коммит 1b036a284d
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -277,4 +277,12 @@ describe('webContents module', function () {
done()
})
})
it('supports inspecting an element in the devtools', function (done) {
w.loadURL('about:blank')
w.webContents.once('devtools-opened', function () {
done()
})
w.webContents.inspectElement(10, 10)
})
})