Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I’m trying to build Qt 5.15.2 WebEngine (Chromium) on Windows to enable proprietary codecs. I followed the instructions here: https://github.com/OpenBoard-org/OpenBoard/wiki/Build-Qt-WebEngine-on-...
Arun K's user avatar
  • 63
0 votes
0 answers
121 views

I have a python PySide6 program that I want to compile and test on a container. The program runs on Windows, so I have a Windows container: FROM winamd64/python:3.13.5-windowsservercore # .. install ...
PJ127's user avatar
  • 1,330
0 votes
1 answer
137 views

I am making a PyQt6 application using the QtWebEngine module. I am trying to use Pyinstaller to turn it into a .app file that can be distributed. The issue I'm currently facing is that the application ...
while true read's user avatar
1 vote
0 answers
117 views

I was creating a scrolling table for a Neutron app (Python, HTML, CSS using PyQt6 and QtWebEngine) and noticed the table scrolled smoothly (scroll animation) with the scroll wheel in the Live Preview ...
smugsenko's user avatar
0 votes
1 answer
85 views

I'm using python3 and Qt5, and recently made the switch from QTextBrowser to QtWebEngine. my project is https://github.com/carlbeech/OpenSongViewer, which is a songbook - songs in a pick list, and ...
Carl Beech's user avatar
0 votes
0 answers
74 views

I am using windows 10, PyQt5, monaco and pyodide. I want to display a .html page on a desktop app, via PyQts libraries. The html file runs when I use it on the web, but not via a desktop app using ...
Doge's user avatar
  • 21
0 votes
0 answers
217 views

Environment: Qt 6.8.1, Windows 11, MinGW 13.1.0. I use QtWebEngine that is installed under the folder C:\Qt\6.8.1\msvc2022_64 because it requires the MSVC environment and not MINGW. When I build my ...
giocap58's user avatar
0 votes
0 answers
53 views

I am trying to integrate a web page from a server into my GUI, the user should be able to view, scroll, interact with the page in some way. But to access the page, a login needs to be done. The login ...
Tanukaum's user avatar
  • 106
2 votes
1 answer
452 views

I noticed that in the Qt installer for Linux (GCC) in Qt 6.8, WebEngine has disappeared, but I couldn't find any official information about the reasons for its removal. Moreover, the official ...
Andrey  Yankovich's user avatar
0 votes
1 answer
35 views

I have a code something like below to print HTML as PDF using PyQt5 library. This code works fine when tested via VS code function core tools however when it is deployed as azure function app I get an ...
rcs's user avatar
  • 1
0 votes
0 answers
43 views

I'm working on a project where I need to integrate a Qt6 WebView into Python. The WebView should allow dynamic control from Python, including: Setting the window size and style (e.g., resizing, full-...
red X's user avatar
  • 15
0 votes
0 answers
78 views

I am trying to create a PyQt5 app with a Bokeh plot in a QtWebEngineWidget. While doing so I get an Error: js: Uncaught (in promise) TypeError: s.replaceAll is not a function For a proof of concept I ...
ole's user avatar
  • 11
-1 votes
1 answer
111 views

https://imgur.com/a/5ncaedR This is a simple little app that just loads webviews for each goggle app Created in qml using qt.webengine, but getting errors on out of date web browser I am not going to ...
Matt T's user avatar
  • 1
1 vote
0 answers
44 views

I'm trying to add to a PyQt5 application a QtWebEngineView widget. This widget must load the following very simple SVG: <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www....
Silverspur's user avatar
1 vote
1 answer
233 views

I have a custom browser using QtWebEngine which I can start from the commandline and pass it a website. It also has a --version option which if set prints out the browser version, QtWebengine version ...
sir's user avatar
  • 9
0 votes
0 answers
442 views

Trying to do a basic program utilizing QWebEngineView: from PyQt6.QtCore import QUrl from PyQt6.QtWidgets import QApplication from PyQt6.QtWidgets import QMainWindow from PyQt6.QtWebEngineWidgets ...
ScottyCov's user avatar
1 vote
0 answers
33 views

The issue is present only on CentOS 7, using Qt 5.12.6 In the Qt application we open a configuration tool using the following command: QProcess::startDetached("google-chrome", {"http://...
Juampa's user avatar
  • 41
0 votes
0 answers
210 views

I want to save to a file all the http requests (get, post, ...) that a QWebEngineView sends during a navigation session (like I would do with Firefox: inspect > network > save to HAR file). ...
zigma12's user avatar
  • 321
0 votes
0 answers
117 views

I can't figure out how to make pages like react.dev, angular.dev, facebook.com, or chat.openai load properly. from PyQt5.QtWidgets import * from PyQt5.QtGui import * from PyQt5.QtCore import * from ...
BlueWOlfStorm's user avatar
0 votes
0 answers
83 views

I want the user to input an account name so I can look for a matching token on storage. If the token exists I want to load a webview with the set cookie. This will aid in fast login when the user has ...
Leonardo Luiz's user avatar
0 votes
0 answers
41 views

So, I made a browser in QtWebEngine, and whenever I make a new tab, and click on a link that takes me to another page, and I click on the back button to go back to the previous one, it doesn't do ...
RoadKingGod's user avatar
-1 votes
1 answer
600 views

we have an app that renders some off-line files via QtWebEngine. The app is multiplatform. Yet recently when upgrading to Qt6 on MacOS the rendering stopped working. If I turn of the QtWebEngine ...
Kapitan's user avatar
  • 103
0 votes
1 answer
2k views

When I try to build Qt 6.2.4 from source, the compiler terminates unexpectedly close to the end for some reason. Would you be able to help me diagnose the issue? There were a number of compiler ...
CompSciDude's user avatar
1 vote
0 answers
331 views

I am porting from QWebKit (Qt 4.8) to QWebEngine (Qt 5.15). In the application, we set some of our own basic HTML into a view (just some text which contains href links). The link URL is actually just ...
JW16's user avatar
  • 11
1 vote
0 answers
254 views

In my application I have a list of buttons and clicking on each creates a new QWebEngineView in a QMainWindow. On closing the QMainWindow I want the QWebEngineView (and the QWebEngineProcess that it ...
Lizzzz90's user avatar
  • 125
1 vote
0 answers
855 views

I want to add web engine widgets to my project so i write Qt += webenginewidgets in .pro file. The error i see: "Project ERROR: Unknown module(s) in QT: webengine". My Qt version is 6.5, web ...
Fluffle Puff's user avatar
1 vote
2 answers
3k views

I'm new to using PyQt5 to create GUIs and I think I need a hand. I'm trying to just create a simple window that renders a simple html file. However, when I use the code below the window renders, but ...
Jaimee-lee Lincoln's user avatar
1 vote
1 answer
1k views

Ubuntu 20.04 I need to install qt6 including qtwebengine package, but when I run configuration ./configure -opensource -nomake examples -nomake tests -force-debug-info I get a message that some of the ...
Ilya's user avatar
  • 11
0 votes
0 answers
31 views

So, I've been working with PyQt5 and their implementation of chromium to make my own web browser in python. But, I've come across an issue, after adding a tabs system and a settings menu, some of the ...
Viridian's user avatar
1 vote
1 answer
990 views

I've seen many many answers about this question, but still cannot figure it out. I made two files, one - html with qrc definition + new QWebChannel, and second python file with Object and ...
offtza's user avatar
  • 11
1 vote
0 answers
347 views

I'm trying to read a JavaScript event from a QtWebEngine widget following these answer1, answer2. In my code below, when i run the first JavaScript call, it does print the button element correctly: ...
Cesar's user avatar
  • 427
2 votes
1 answer
260 views

I'm adding the discord widget from widgetbot to a grid layout in a way it can expand above other widgets, the problem is, even when the widget is 'closed' the QWebEngineView widget occupies the entire ...
Cesar's user avatar
  • 427
1 vote
1 answer
2k views

I've a CMake project that uses vcpkg.json for using vcpkg, and CMakePresets.json for setting the CMake options. This is the vcpkg.json: { "name": "myproj", "version": ...
Jepessen's user avatar
  • 12.7k
2 votes
1 answer
752 views

Trying to use QML WebEngineView + WebChannel (Qt 5.15), but when running the videoTime script, I get js: Uncaught ReferenceError: QWebChannel is not defined Here is a reproducible example import ...
Pa_'s user avatar
  • 531
1 vote
0 answers
477 views

I am receiving a ERR_TOO_MANY_RETRIES while trying to load a local SQL website into a PySide2 application. Any solution to this? I have tried using https and http, as well as using reports = QUrl....
Thatmemphiskid's user avatar
0 votes
1 answer
475 views

I use PyQt5.QtWebEngineWidgets to display a PDF and I'm trying to get the selected text. Using hasSelection() and selectedText() works on HTML files, but it fails when the web view displays a PDF file....
hojicha's user avatar
  • 26
1 vote
1 answer
204 views

WebEngineView should be displayed in the whole window, but it's not. Right margin strip and bottom margin strip is not displayed. Instead a strip of (red) background is visible. Yet I can click on red ...
Tomas_cz's user avatar
1 vote
0 answers
517 views

I want to compile and run WebEngine Recipe Browser Example with Qt-6.2.3 or Qt_6_4_0 but I get this error: QML debugging is enabled. Only use this in a safe environment. qt.webenginecontext: ...
Parisa.H.R's user avatar
  • 3,928
1 vote
0 answers
185 views

I am working on a Qt project that requires some HTML tags attrs to be rendered over the main page. for example, id or class name. But I am not sure exactly how to proceed with this. Does anyone have ...
Abdulroqeeb Ariwoola's user avatar
0 votes
2 answers
2k views

I have this weird problem on Windows 10 with PyQt5 QWebEngineView. When I delete self.webView = QtWebEngineWidgets.QWebEngineView(self.groupBox_4) from window_ui.py which is generated with pyuic5 app ...
Cagri's user avatar
  • 375
0 votes
1 answer
384 views

To solve a display problem I was suggested to use QWebEngineView. I inserted from PyQt5.QtWebEngineWidgets import QWebEngineView in the script which when executed emits: from PyQt5.QtWebEngineWidgets ...
user avatar
1 vote
1 answer
486 views

I embed youtube within QML WebEngineView. Everything is working fine but only the autoplay is not working. I try to add ( ?autoplay=1 ) after URL as this answer How can I autoplay a video using the ...
Joe's user avatar
  • 881
1 vote
0 answers
792 views

I want to use QWebEngine to render an animated webpage offscreen (with transparency). And I want to do it fast (e.g. 60 fps, which imposes ~16 ms maximum time per render). This other SO question Is it ...
sthlm58's user avatar
  • 1,274
0 votes
0 answers
277 views

am I missing something? should I install some other libraries to make my browser work? basically, I just did the interface. can someone explain what's the problem?! if you run this code it will take ...
RayKira's user avatar
1 vote
1 answer
580 views

I have a pywebview, that launches a Qt window utilizing the QtWebEngine with Chromium on Windows. When starting the webview in debug mode, the following output is of particular interest for me: ...
Pikkostack's user avatar
0 votes
1 answer
223 views

I am developing a Qt application displaying a WebEngineView. The cache is working properly. I would like to go further by integrating an offline mode: without a network, the application must display ...
morikann76's user avatar
0 votes
1 answer
866 views

I'm currently working with PyQt5 and PyQtWebEngine and I want to create a small browser. OS and version info: Windows 10 Python 3.9.6 PyQt5 5.15.6 PyQtWebEngine 5.15.5 I installed all these packages ...
3V's's user avatar
  • 57
1 vote
1 answer
2k views

I wrote an application with QtWebEngine, but I need support for the h264 codec and QtWebEngine doesn't include it by default because of patent problems, or so I heard. That's why I decided to build ...
max1415's user avatar
  • 11
1 vote
0 answers
621 views

Hellow everyone recently i'am trying to use qtwebengine in qt but every time i get an error this is my code : #include <QApplication> #include<QtWebEngineWidgets/QtWebEngineWidgets>> ...
ngdream's user avatar
  • 35
1 vote
1 answer
439 views

I have some Python code which sets a cookie like this: loader = QtWebEngineWidgets.QWebEngineView() profile = QtWebEngineWidgets.QWebEngineProfile("storage", loader) cookie_store = profile....
AMendis's user avatar
  • 1,576

1
2 3 4 5
10