Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    • Unsolved
    1. Home
    2. Tags
    3. chromium
    Log in to post

    • UNSOLVED Disable or change default QtWebEngine styling
      QtWebEngine • qtwebengine chromium styling • • jbleyaert  

      1
      0
      Votes
      1
      Posts
      137
      Views

      No one has replied

    • SOLVED QWebEngineView crashes on Chromium error
      QtWebEngine • qtwebengine chromium qt5.14.2 • • Jez1337  

      11
      0
      Votes
      11
      Posts
      1078
      Views

      @KH-219Design glad to know I helped and thanks again for your input! After working perfectly during one full day of tests, the problem resurfaced again yesterday. Anything built in C++ using QWebEngineView works for all of my tests until it gets to one of the problem URLs, then abruptly crashes. No other URLs cause this problem and the page in question loads fine in any "real" browser I try it in. Since I'm not tied to any particular version of Qt, I've downgraded from Qt 5.14.2 to Qt 5.13.2. The Qt 5.13.2 QWebEngineView is not crashing. Also, it seems faster than Qt 5.14.2, and doesn't have another annoying behaviour which I believe to be graphics driver-related, which is that for certain pages of a well known UK based left wing newspaper the URL loads and then the whole web engine widget goes grey, and the program freezes. With no interest in faffing around further, I'm concluding that inside Qt 5.14.2, either the implementation of Chromium or the Qt WebEngine wrapper is buggy, at least for my particular combination of hardware and software. Original Problem Using MSVC 2017 + Qt 5.14.2, QWebEngineView crashes randomly on certain URLs which do not appear to be doing anything out of the ordinary. Solution Avoid Qt 5.14.2, or at least avoid the pre-built MSVC 2017 version which comes when you use the offline installer for Qt 5.14.2. In my case this meant downgrading to Qt 5.13.2.
    • UNSOLVED Java Applet support in QWebEngine
      QtWebEngine • webengineview java webengine qt5 chromium applet • • Ryna  

      1
      0
      Votes
      1
      Posts
      199
      Views

      No one has replied

    • UNSOLVED Profile corruption when using QWebEnginePage together with WebEngineView
      QtWebEngine • webengineview chromium qwebenginepage corruption • • BogdanV  

      1
      0
      Votes
      1
      Posts
      182
      Views

      No one has replied

    • UNSOLVED QtWebEngine "Uncaught NotSupported Error: Failed to executed" on "MediaSource"
      QtWebEngine • qtwebengine chromium videomp4 • • jordanbaucke  

      1
      0
      Votes
      1
      Posts
      1313
      Views

      No one has replied

    • SOLVED Qt 5.7: QtWebEngineWidgets not working on Linux
      QtWebEngine • linux qt 5.7 qtwebengine chromium icu • • Stefan Scherfke  

      4
      0
      Votes
      4
      Posts
      15452
      Views

      mark qtwebengine_resources.pak + qtwebengine_resources_100p.pak+ qtwebengine_resources_200p.pak
    • Qt gives me an error when application is launched in Desktop compilation in qt 5.7.0
      General and Desktop • desktop qt5.7 webengine qt5 chromium ssl failed • • AmazingQt  

      1
      0
      Votes
      1
      Posts
      621
      Views

      No one has replied

    • UNSOLVED Passing/Changing Arguments to QtWebengineProcess
      QtWebEngine • qtwebengine settings qt 5.4.0 chromium • • healthhazard  

      4
      0
      Votes
      4
      Posts
      4793
      Views

      alas no luck - so far still the only option is to use command line parameters to your own app - and yes every single embedded web engine sub-process will reuse the same parameters (no luck with different proxy per tab problem) e.g. if you try MyApp.exe --proxy-server=host:port and your app opens 10 tabs the same proxy it will be reused by every single tab/or browser/or sub-process/ pretty much the same as setting global proxy (at application level) https://bugreports.qt.io/browse/QTBUG-59490 BTW: if they implement the above they need to decide which has higher priority - global app level proxy or per web engine sub-process
    • SOLVED QWebEngine page intercept network request
      General and Desktop • webkit chromium • • Dave F  

      4
      0
      Votes
      4
      Posts
      2114
      Views

      @Dave-F You're Welcome :) Then you can use QWebEngineUrlRequestInterceptor I guess.
    • Pass custome data from C++ to JS (QWebChannel)
      QtWebEngine • qwebengineview chromium qwebchannel blink custome data • • cr0_  

      1
      1
      Votes
      1
      Posts
      1612
      Views

      No one has replied

    • Allow WebRTC webcam request using when QtWebEngine
      General and Desktop • qml qtwebengine qt 5.4.1 webengine chromium qml qtwebengine • • joelmar  

      2
      0
      Votes
      2
      Posts
      2873
      Views

      You need to connect to the featurePermissionRequested of the WebView, i.e. onFeaturePermissionRequested: { grantFeaturePermission(securityOrigin, feature, true); }
    • Importing resource files of an imported project in QT
      General and Desktop • qtcreator linux qmake cross compile pro file import chromium ressource • • MrGrj  

      1
      0
      Votes
      1
      Posts
      650
      Views

      No one has replied

    • How to enable logging in webengine/chromium?
      QtWebEngine • chromium logging • • rahul3349  

      2
      0
      Votes
      2
      Posts
      1833
      Views

      Hi Rahul, I am looking something similar i.e. logs of Qt framework. Refer https://forum.qt.io/topic/58566/how-to-print-logs-qdebug-qwarning-qcritical-qfatal-of-qt-framework-libraries-itself Try using --log-level=0. It might work in your case. Thanks, Anant Agrawal