I have a QWebView that loads a page that has some javascript which modifies the document on the fly. AKA:
Qt Code:
  1. document.getElementByID("displayWindow").innerHTML = "Somegeneratedtext";
To copy to clipboard, switch view to plain text mode 
Is there a way to for my Qt program to look at the modified page, and capture this changed text in say, a QString, perhaps like QTextCursor?