I had a similar problem.
You can try to fix in this way:
do enable console loggin' adding CONFIG += console into the .pro file
rebuild and launch again the application: now every qDebug() message and other errors appear in a terminal
now you can follow what QT is saying that is missing (in my case libEGL.dll libGLESv2.dll and opengl32sw.dll)
Hope this can help.
I use this code to resolve my problem :
Rectangle {
width: (tabView.width)-30
Layout.preferredHeight: 400
z:1
WebEngineView {
id: webview
url: "http://google.com"
anchors.fill: parent
}
}
Ah sorry... I didn't notice you were using Qt WebEngine.
I don't know if that's possible, sorry.
If you don't get any answers here, try asking at the Interest mailing list (you need to subscribe first).
Hi,
QtWebEngine is a very new module and since this forum is community driven, it'll need some time to build the knowledge around it. You can also check the interest mailing list for help.
If you mean command-line parameters perhaps the answer here could shed a light...
http://forum.qt.io/topic/52375/qwebengine-how-to-disable-chrome-sandbox-using-quicknanobrowser-qt5-4-1
Hi and welcome to devnet,
AFAIK, there's no such example available. basysKom has done something shown here but I don't know if there's any source available
@musimbate The QtWebEngine module suffers the same restrictions as the QtWebKit for Android and iOS.
For a list of currently supported platforms, have a look here