Skip to content

QtWebEngine

Discussions and questions on QtWebEngine
1.3k Topics 4.0k Posts
  • Playback of video/stream (HLS): MediaEvent: PIPELINE_ERROR with audio only

    Unsolved
    1
    0 Votes
    1 Posts
    2k Views
    No one has replied
  • QWebEngine freeze issues

    Unsolved
    3
    0 Votes
    3 Posts
    1k Views
    M
    Thanks I guess i'll ask them to update their video card driver? Cheers, Max
  • libQt5WebEngineCore.so.5.8.0 and libQt5WebEngine.so.5.8.0 linker errors

    Unsolved
    1
    0 Votes
    1 Posts
    741 Views
    No one has replied
  • Can't Figure out QWebEngineView::findText()

    Solved
    7
    0 Votes
    7 Posts
    4k Views
    T
    @PSI_lbc said in Can't Figure out QWebEngineView::findText(): The concept of QWebEngineView::findText() is really, really weird. If you’re looking for specific text on a webpage, you want to know the searched for text is there NOW..not when some callback function gets around to it. This is by design - it affects all functions that interact with the browser, everything is asynchronous e.g. runJavaScript(code) too.
  • QWebEngineView double page load on HTML submit

    Unsolved
    1
    1 Votes
    1 Posts
    862 Views
    No one has replied
  • 0 Votes
    2 Posts
    2k Views
    T
    Well one way to do it is to use QWebEnginePage::runJavaScript but be careful it executes asynchronously! http://doc.qt.io/qt-5/qtwebenginewidgets-qtwebkitportingguide.html then in your javascript - find IMG element by id/class/whatever and set its contents like an embedded image e.g. change src to src='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8/5+hHgAHggJ/PchI7wAAAABJRU5ErkJggg==' this is example 1x1 pixel black dot image you'll have to substitute with your own image data base64 encoded and of course change image format if you're not using png to data:image/jpg(whatever)
  • QtWebEngineProcess fails to start on deployment

    Unsolved
    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • "Failed to launch zygote process" with Qt examples

    Unsolved
    4
    0 Votes
    4 Posts
    4k Views
    K
    I have this error too. How fix this?
  • iconUrlChanged signal not received with custom url scheme

    Unsolved
    2
    0 Votes
    2 Posts
    781 Views
    B
    I think you can solve your problem by overriding this function: http://doc.qt.io/qt-5/qwebenginepage.html#acceptNavigationRequest You have to check the url scheme that match your custom url sheme then do emit iconUrlChanged signal, other cases, call to this parent method to execute th request.
  • Changing the cookies policy leading to a crash of the ChromeIOThread

    Unsolved
    1
    0 Votes
    1 Posts
    555 Views
    No one has replied
  • https site not able to access local server

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    C
    @kanekotic Qt 5.8 uses chromium 53. It is scheduled to be released next week, on the 23rd of January 2017
  • Hang on showing a contextual menu

    Unsolved
    8
    0 Votes
    8 Posts
    3k Views
    M
    Thanks for your advice The fact that sometimes i can unblock by clicking in the search field or on another window or putting the app in the dock, leading me to think there's something wrong with the eventloop. All the more so as i'm having experienced similar locking in early version of QtCreator on OSX ( the editor panels don't response to mouse click or keyboard stroke) I'm going to try if i can reproduce this issue with the DemoBrowser To be continued ...
  • drag and drop only available on my https site and not the http

    Unsolved
    1
    0 Votes
    1 Posts
    333 Views
    No one has replied
  • Rebuilding QWebEngine for Netflix support

    Unsolved
    2
    0 Votes
    2 Posts
    885 Views
    M
    It would be nice if we could only drop the codecs like with the plugins, rebuilding from scratch on every OS is kind of a pain. Thanks for considering. Doc here: https://wiki.qt.io/How_to_Try_QtWebEngine Seems not updated for Windows. I just want to rebuild QWebEngine and not all Qt module. It would be nice to have a ready to use version already built on Qt website, or the step to build QWebEngine from source for newbies. Thanks
  • This topic is deleted!

    Solved
    1
    0 Votes
    1 Posts
    21 Views
    No one has replied
  • Replace QWebKit Object.signal.connect()

    Solved
    14
    0 Votes
    14 Posts
    5k Views
    M
    Exactly that, Thanks Chris !
  • QWebEngineView - loadFinished triggered twice for one setUrl?

    Solved
    6
    0 Votes
    6 Posts
    4k Views
    M
    Fixed by removing the dynamic property "url" in Designer. You can remove with the - bar on top right, I was expecting right click. I suspect it is because my object were QWebView that are demoted to QWidget and promoted to QWebEngineView, the dynamic property of QWebView were still there Thanks guys
  • Javascript evaluation not working in developer tools

    Unsolved
    2
    0 Votes
    2 Posts
    684 Views
    X
    I've tried it inside a linux VM and it's the same.
  • QWebEngineView inside QGraphicsView with QGraphicsProxyWidget

    Unsolved
    2
    0 Votes
    2 Posts
    1k Views
    S
    hi I have "solved" the issue using the following workarround: I trigger a infinite event loop using QTimer every 100 to 200 ms (depending on the type of page that is displayed) and force a page refresh by calling update() on the QWebEngineView object.
  • Supported Codecs in Qt5.7

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