Questions tagged [qwebengine]
18 questions
1
vote
1 answer
Why my QWebEngineView stucks at instagram loading screen and don't accept inputs like reload
When I run everything works fine except it stops at instagram splash/loading screen, even the right click menu option don't work. Works for PyQt5 but not from PyQt6.There is no problem with internet connection.
from PyQt6.QtWidgets import *
from…

Akshat
- 17
- 4
1
vote
1 answer
Qt WebEngine: Get error reasons in QWebEnginePage::loadFinished and QWebEnginePage::pdfPrintingFinished
Signal QWebEnginePage::loadFinished has a bool ok parameter and signal QWebEnginePage::pdfPrintingFinished has a bool success parameter that indicate if there was an error. But both signals don't have any additional error information. Is there a way…

Mr. Clear
- 471
- 5
- 13
1
vote
0 answers
QWebengineView : Disable Ctrl+mouse wheel
Is it possible to disable zooming(ctrl+mousewheel) of html content loaded in QWebEngineView. I tried
qputenv("QTWEBENGINE_CHROMIUM_FLAGS", "--enable-blink-features=ShadowDOMV0,CustomElementsV0,--disable-pinch");
it is not working.
Note: We are…

Akshay R
- 47
- 6
1
vote
0 answers
Bet365.com is not loading in QWebEngineView
class MyWebEngineUrlRequestInterceptor(QWebEngineUrlRequestInterceptor):
def __init__(self, parent=None):
super().__init__(parent)
def interceptRequest(self, info):
print("interceptRequest")
…

Ivan
- 11
- 2
1
vote
1 answer
How would someone grant permission to the capture audio from microphone feature using Qt WebEngineView
I am using the WebEngineView QML type to render a locally hosted web page which uses the WebRTC HTML media audio capture feature on Qt 5.15.1 (Which is listed among the features available to WebEngineView.
The web page is hosted locally using an…

mike510a
- 2,102
- 1
- 11
- 27
0
votes
0 answers
How to properly redirect a request from QWebEngineUrlRequestInfo?
I'm writing a little plugin for Falkon, whose task is very simple: redirect requests from youtube.com to piped.video. It does it, but only if there is nothing in the URL except the domain (i.e. just "youtube.com"), and if there is, youtube page…

dasehak
- 1
- 2
0
votes
0 answers
PySide6 QT do an action when the browser requests an input / on input field
I am trying to build a kiosk browser applet, which has two elements. A keyboard view and a normal webengine browser window. I would like to link an event, where the browser requests a keyboard to pop up. Eg. when an input is clicked/pressed. So I…

aberst
- 47
- 5
0
votes
0 answers
exit when starting QWebEngine
When the program starts, a message is displayed: "Exception at 0x7fff96f1cd29, code: 0xe06d7363: C++ exception, flags=0x1 (execution cannot be continued) (first chance) in ig9icd64". I don' t understand the problem
I wanted to study QWebEngine
0
votes
0 answers
Getting bytes transferred of a web page in QWebEngineView
Is there a way to get the weight of a web page after finished to load using QWebEngineView in Python?
What I mean is the weight of the datas trasnferred to load the whole page, in order to avoid a network sniffer to do it.
Thank you very much.
I'm…

GiuseppeR
- 11
- 2
0
votes
0 answers
How to close QWebEnginePage (Python)
I am using QWebEnginePages as tabs in my QWebEngineView and my question is how to properly close the QWebEnginePage? I can't find any solution, I searched in Stackoverflow, Google, Qt docs and some other sites.

UnitedCatdom
- 13
- 4
0
votes
0 answers
QWebengine not working on Qtcreator with Qt5.13.2 on window 10 32 bits
I've been trying to compile a code on Qt creator with Qt 5.13.2 on windows 10 32 bit, but it displaying QWebengine not found, I search online to get solution, but I only saw solution on Visual Studio Qt, my pc has no VS installation.
0
votes
0 answers
Minimal working example of QWebEngine with client certificates?
I am trying to get client certificates working with the Qt web engine (version 5.15), but I can't seem to get it done!
I have a local server set up to use SSL, to expect client certificates and check them against a locally created root CA…

punytroll
- 48
- 1
- 5
0
votes
1 answer
Pyqt5 how to set URL and show the page
I am studing python and making bookmark function for practice purpose.
Now I could register url to tab menu.
and when I press the link from tab menu. nothing shows on browser.
following area, somebody please le me know what is…

Taniguchi
- 13
- 4
0
votes
0 answers
Nothing appears in PrintPreview when I want to print an HTML file using QWebEngine
I have an HTML file with Css tags, see below.
As you know, QTextDocument does not fully accept Css tags. I replaced it with QWebEngine, but nothing appears.
Should I use QWebEnginePage or QWebEngineView in this case?
# -*- coding: utf-8 -*-
from…

JAGUAR 2084
- 39
- 6
0
votes
1 answer
Qt QWebEngine - work with HTML anchors
Good day stackoverflow community. Have a non trivial question.
For displaying web content we are using ActiveX. We decided to switch to QWebEngine, but were faced with the problems:
ActiveX allows us:
save HTML anchors in QAxObject
listen to…

Holiday
- 11
- 6