Recently Qt introduced the QtWebEngine
module. Is there a way to invoke developer tools and debug JavaScript code inside QWebEngineView
? It was possible with QWebView
using
page()->settings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true);
but I couldn't find any similar option in QWebEngineView
.