I am using QWebView to display html in my app. I set html by using QWebView::setHtml() function.
Problem is that accessing DOM before loadFinished does not work. But after loadFinished it works. So I guess DOM is available only after loading. I want to check DOM content just after setHtml() but before show().
Is it Possible? If possible what is the way to access DOM before calling show() on QWebView. There is no function in docs like startLoad().
I am using Qt 4.8 on Windows 8.