retrieve html from web page with chrome dev tools

Solution 1:

You have to wait until the page is loaded in browser. The library you use has an example for that in README.

chrome.Page.navigate(url="http://www.google.com/")
chrome.wait_event("Page.loadEventFired", timeout=60)

The DOM interface may need chrome.DOM.getDocument() before accessing the elements.