Как и во внешнем интерфейсе, document
не имеет свойства innerHTML
:
console.log(document.innerHTML);
Однако, у document.documentElement
есть:
console.log(document.documentElement.innerHTML);
JSDom работает так же. Добавление .documentElement
к document
доступам, например,
console.log(dom.window.document.documentElement.innerHTML);
, приводит к:
<head></head><body>...</body>