Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
3k views

How to know when a web page is loaded when using QtWebKit?

Both QWebFrame and QWebPage have void loadFinished(bool ok) signal which can be used to detect when a web page is completely loaded. The problem is when a web page has some content loaded ...
3
votes
3answers
1k views

How to tell QWebPage not to load specific type of resources?

How to tell QWebPage not to load specific type of resources like js, css or png?
2
votes
1answer
325 views

PyQt: how to use QWebPage with an anonimous proxy

This is driving me crazy. I want to show in a QWebPage an url, but i want to do it passing by an anonimous proxy. Code #setting up the proxy proxy = QNetworkProxy() ...
2
votes
1answer
729 views

QWebElement manipulation of a QWebPage in a separate thread

I have a QWebPage created in the main thread (you can't create it anywhere else). I would like to manipulate this page using the QWebElement API introduced in Qt 4.6, but in a separate thread. So that ...
1
vote
2answers
38 views

How can I make QWebView/QWebPage default to serif font?

Using PyQt4, I create a QWebView and then load it with its setHtml() method. The HTML is displayed correctly in most respects but always using the default sans-serif font. When the identical HTML ...
1
vote
0answers
180 views

QWebPage force to open link in same tab

I'm working on a one tab browser in Qt and I've encountered a problem: The links on the web that lead to external websites are set to open in a new tab (using taget='_blank'). However, since my ...
1
vote
1answer
140 views

QWebPage, getting the mime type

I am wondering how I can get the mime-type of the current page using a QWebPage. Also, if possible, I would like to be able to do this using the HEAD request so I know not to download the whole page ...
1
vote
1answer
565 views

Does qwebview/qwebpage download contents in a separate thread or in the main/gui thread?

If it doesn't then how can i explicitly force it to download async. in a separate thread?
1
vote
1answer
744 views

QWebPage. How to handle failed request

I want to handle failed requests (for example, with http 404 error code in reply), display my own "notfound.html" page in QWebView. But there is no simple way to handle replies with QWebView/QWebPage ...
1
vote
1answer
1k views

How get a focus element in QWebView/QWebPage?

i need to be able to react on focus changes in QWebPage. I used microFocusChanged() signal and it gives me almost desirable behavior, but anyway i don't know how to know which element is selected. I ...
1
vote
1answer
409 views

QWebPage triggers loadFinished() several times

I'm loading content into QWebPage, using load() method. But my loadStarted(), loadFinished() and loadProgress() handlers are calling several times. How can I detect that page is loaded completely with ...
1
vote
1answer
468 views

How to tell QWebPage not to load images?

I'm using QWebPage to load needed site page. But QWebPage loading all additional resources: images, csses, and so on. Is there any way to present this behavior and cancel loading of images? Only idea ...
1
vote
2answers
2k views

How to follow a link in QWebKit?

Having a DOM of the following html; <a href="?op=order"> <img class="img_button" src="picture.gif" onMouseOver="this.src='some.gif';" onMouseOut="this.src='some_other.gif';" alt="" ...
0
votes
0answers
34 views

Getting erratic “Invalid Signal signature” errors in PySide QWebPage

I am creating an application which automates loading webpages and creating screenshots (no, I cannot use one of the existing solutions) using PySide. One part of the app gets a list of URLs and loads ...
0
votes
1answer
172 views

Override shouldInterruptJavaScript in QWebPage with PySide

I would like to override PySide.QtWebKit.QWebPage.shouldInterruptJavaScript() slot to silently ignore JavaScript interrupt requests. I have my own timeout timer setup and I do not need a default ...
0
votes
1answer
231 views

How can I manage QWebView contents in Qt?

I have a QWebView object loading a web page. I need to save a picture from the page to the memory. The URL of the picture is dynamic, but it follows a regexp. How do I do that with QWebView?
0
votes
2answers
129 views

How to view HTML data associated with a QWebPage

I wrote a program that uses a QWebPage to retrieve websites. Is there a way to get the data associated with the web page, like HTML, CSS, and Javascript? Similar to view-source in firefox. There seem ...
0
votes
1answer
651 views

How to read data from QNetworkReply being used by QWebPage?

I use QWebPage to download a webpage as well as all its resources. At the same time I'd like to get hold on raw data being downloaded by Qt during this process. Doing this by reading data from ...
0
votes
1answer
413 views

Pyqt save dom to file

Why this code does not work ? I want save dom after js execute at this page and i want use qt without gui. Sorry for my English. #coding:utf-8 from PyQt4 import QtCore, QtWebKit class Sp(): def ...
0
votes
2answers
674 views

PyQt4.QtWebKit: QWebPage QWebView set timeout when load stop

Is there any way to say to a QWebPage or to a QWebView stop loading page if some sort of timeout is exceeded? Sultan
0
votes
1answer
496 views

Setting useragent in QWebView

I have a QWebView, which works fine. Then, using code from spynner, I attempt to bind the useragent method to a custom method. This appears to work in spynner (with a QWebPage), but not here. Any help ...