Some googlefoo lead me to this answer, however after mucking around with it and reading the docs I can't figure out how to actually build a QWebFrame in order to parse.
I will need to do something a fair bit more elaborate than this later, but right now all I'm trying to do is post some data, loginusername and password, to a website and parse the title tag on the response page to determine whether the login was a success of failure. I feel like it might be quicker to do that with regex rather than building a whole dom, but I don't know regex and this seems easier atm.
So, what I've got going on now is I post the data and the reply gets turned over to a method of a subclassed QDialog when the request emits the finished() signal. So I've got a QNetworkReply which I'm trying to parse and don't know where to go from there. If you need to see my code please ask, but I figured it was unnecessary. Thanks guys.