Skip to content

QtWebEngine

Discussions and questions on QtWebEngine
1.3k Topics 4.0k Posts
  • QWebEngine can't load localhost on Windows

    Unsolved
    1
    0 Votes
    1 Posts
    852 Views
    No one has replied
  • How to do “curl -X PUT -d someASCII 192.168.1.1:80”

    Unsolved
    1
    0 Votes
    1 Posts
    764 Views
    No one has replied
  • QTBUG-44763 still not fixed yet?

    Unsolved
    2
    0 Votes
    2 Posts
    662 Views
    EddyE
    Hi hzqst , And what is your question exactly? as I disabled LAN proxy auto-detect the bug gone. Do you have a solution for the older versions? Maybe it's better to give your feedback in the Qtbug page itself to inform the maintainers there. This forum is rather user oriented, but we appreciate all feedback on Qt.
  • Use QWebEngineView as a widget in QDockWidget comes an odd bug?

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    T
    I was experiencing the same with Qt 5.8 and some earlier versions then it was OK with latest 5.8.x now it's back (5.9)... but I thought it was a bug in adobe flash player (or the game I was playing) ..now I realize it is exactly as described here (I must aim about 8-10 pixels higher - approx. 1 normal menu item height) - must be a docking issue... P.S. The fun part was - when I send mouse move/click events they seemed to hit the right coordinates alas no such luck with actual hardware/mouse - good thing the game changes mouse pointer on hover so I get pretty good visual confirmation hitting nowhere and actually pressing a button somewhere - practical magic :-)
  • How to configure qt web view in qt static command qtwebview is not installed

    Unsolved
    1
    0 Votes
    1 Posts
    664 Views
    No one has replied
  • QTWenEngine & Chromium browser on same Application Causing clashes.

    Unsolved
    1
    0 Votes
    1 Posts
    479 Views
    No one has replied
  • QT webengine installation issues

    Unsolved
    3
    0 Votes
    3 Posts
    4k Views
    SGaistS
    Hi and welcome to devnet, The QtWebEngine module is only available with MSVC 2015 and higher. This has nothing to do with Qt but with the backend used. If you'd like to use QtWebKit then you should consider @Konstantin-Tokarev's reboot here.
  • Custom MIME Type in Drag And Drop from QtWebEngine to Another App

    Unsolved
    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • How to disable UI shortcuts when QWebEngineView widget is active

    Unsolved
    1
    0 Votes
    1 Posts
    602 Views
    No one has replied
  • Qt 5.8 - MSVC 2015 (x64) - Build error

    Solved
    5
    0 Votes
    5 Posts
    4k Views
    B
    Hi, for problems concerning path too long issues, I suggest you to try the new long path tool. This can help you with all kinds of path too long cases.
  • qt-webengine-javascript-failed-to-load-png-image

    Unsolved
    1
    0 Votes
    1 Posts
    553 Views
    No one has replied
  • Qt 5 can't lauch https adresses

    Unsolved
    3
    0 Votes
    3 Posts
    2k Views
    N
    thank you for your answer , but i change from C++ to QML and i work : WebEngineView { id: webView width: 520 height: 520 url: "https://localhost:8443/" visible: false anchors.fill: parent anchors.margins: 10 onCertificateError:{ error.CertificateInvalid error.ignoreCertificateError() console.log(error) } onFeaturePermissionRequested: { console.log("request") grantFeaturePermission(securityOrigin, feature, true); }
  • QWebEngineView not working with QVirtualKeyboard

    Solved
    1
    0 Votes
    1 Posts
    939 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    9 Views
    No one has replied
  • QtWebEngine build silently ignored on Windows

    Solved
    5
    0 Votes
    5 Posts
    3k Views
    S
    Thank you, compiling QtWebEngine by hand did output error messages, one being that WindowsSDKVersion environment variable was not set and the other being that "Python 2.7.5 or later" means "Python lower than 3". While there are still errors along the build, the original problem has been solved. QtWebEngine is starting compilation now.
  • How do I even implement the Web Engine?

    Solved
    6
    0 Votes
    6 Posts
    2k Views
    SGaistS
    Sure, QWebEngineView is a widget like QLabel. As for Qt Designer, I don't know for QWebEngineView. AFAIK, it's the default when creating an account however I currently don't know how to change that if it's possible.
  • Java Script failed to create QtQuick 2.5 object

    Unsolved
    2
    0 Votes
    2 Posts
    830 Views
    S
    you can find my code I found the issue, in HTML page, I am loading testJava.js, which causing this issue : <head> <script type="text/javascript" src="testJava.js"></script> </head> But still why it should have an issue ?
  • Is there any possible way to add devtools for QWebEngine?

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    T
    add code: qputenv("QTWEBENGINE_REMOTE_DEBUGGING", QByteArray::number(9000)) chrome visit: localhost:9000
  • qt 5.6 WebEngine open local html file

    Unsolved
    2
    0 Votes
    2 Posts
    3k Views
    M
    Using qrc worked for me (Qt 5.8). Are you sure you added the file to the qml.qrc file? Should look something like qml.qrc <RCC> <qresource prefix="/"> ... <file>minimal/html/index.html</file> </qresource> </RCC> and in the qml WebEngineView { anchors.fill: parent url: "qrc:/minimal/html/index.html" } I believe the url just follows the same scheme as in this S/O answer, so you should also be able to use something like file:///yourpath/minimal/html/index.html
  • QWebEngineView crashesh if closed after going to fullScreen

    Unsolved
    1
    0 Votes
    1 Posts
    454 Views
    No one has replied