<div dir="ltr">I have a website that loads resources such as images, iframes, ajax, scripts, etc.<div><br></div><div>Running qt web engine on this website, I found a way for the render to time the exact moment these requests were initiated by subclassing QWebEngineUrlRequestInterceptor, and passing that class to m_page.profile()->setRequestInterceptor().</div><div><br></div><div>However, I would also like to time when these DOM resources finish downloading as well. This was possible in qt webkit, so I was hoping there's a way to do it for qt webengine.<div><br></div><div>One example I thought was the solution is the signal QWebEngineProfile::downloadRequested(QWebEngineDownloadItem *download). This signal allows me to access the QWebEngineDownloadItem object, which signals when the download has finished, which is basically what I am looking for. However, this signal doesn't ever seem to be executed. I think it is only run when e.g. a user clicks on a download link, rather than being run for every DOM resource being loaded.</div></div><div><br></div><div>I spent basically the entire day looking through documentations, but couldn't find anything. Any help would be appreciated!</div><div><br></div><div>Best,</div><div>Kevin</div></div>