Tagged Questions
0
votes
1answer
250 views
QWebView,How to determine whether this link is a new window?
code
News::News(QWidget *parent) :
QDialog(parent),
ui(new Ui::News)
{
ui->setupUi(this);
ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks);
...
1
vote
1answer
202 views
QWebPage not working after the first load
I'm writing an application that scrapes some web pages using QWebPage. I'm having some trouble when the response is a Http redirect (e.g 302, 303, etc). The QWebPage simply does not follow the ...