I'm able to catch requested urls by installing custom request interceptor butQWebEngineUrlRequestInfo
contains only urls. Is it also possible to catch content which is return by those requests?
void RequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo &info)
{
qDebug() << "IN " << info.requestMethod().toStdString().data() << " " << info.initiator().toString();
qDebug() << "FP " << info.requestMethod().toStdString().data() << " " << info.firstPartyUrl().toString();
qDebug() << "RL " << info.requestMethod().toStdString().data() << " " << info.requestUrl().toString();
}