I am cliking a link using the below code. Then QWebView is loading a different page. But loadFinished() signal is not emitted. How can I know whether the new page is loaded or not. Please help.
Qt Code:
  1. button_click.at(48).evaluateJavaScript(
  2. "var evObj = document.createEvent('MouseEvents');evObj.initEvent( 'click', true, true );this.dispatchEvent(evObj);"
  3. );
To copy to clipboard, switch view to plain text mode