How to save dynamically generated web page in QWebEngineView?
问题 I am loading a web page onto QWebEngineView . A user creates a different kind of tables (reports) and then needs to save those tables to local computer as a web page. Here is what I have tried: Here I use a QWebEnginePage::save() method, but nothing happens: connect(saveButton, &QPushButton::clicked, this, [this]() { engineWebView->page()->save("save.html"); }); Then I tried a QWebEngineProfile::download() method: connect(saveButton, &QPushButton::clicked, this, [this]() { engineWebView->page