How to take webpage screenshots using QWebEngineView without opening window
问题 I'm looking for a way to take website screenshots with QWebEngineView . The main goal is to develop a headless screencapture application that runs in the background. I've managed to get a minimal working example to work (see this for example). However, these examples require that the QWebEngineView widget is made visible, either with calls to QWebEngineView::show() , QWebEngineView::showMinimized() or even QWebEngineView::setVisible(true) , to be able to take a screen capture of a website. As