The QWebPage class, part of the Qt framework, provides an object to view and edit web documents.

learn more… | top users | synonyms

0
votes
0answers
16 views

QWebPage chooseFile function override

I am trying to upload a file programmatically to an input type file. My goal is to press the choose file button on a website and instead of seeing the dialog insert a file with software. I understand ...
0
votes
0answers
23 views

How to override chooseFile method of QWebPage

I am trying to override the chooseFile method of QWebPage in Python QTWebkit, but with no success. My Browser class looks like this: class Browser(QApplication): def __init__(self): ...
0
votes
1answer
29 views

Re-ordering the connection queue of Qobject

I have a customized QNetworkAccessManager and a QWebPage class, now I want to read the reply data of each request retrieved by the QWebPage. Now I connected the finished() signal, but since QWebPage ...
0
votes
0answers
22 views

How to Override PyQt's “QWebPage.javaScriptPrompt()”?

According to PyQt documentation, the signature is (bool, QString result) QWebPage.javaScriptPrompt (self, QWebFrame originatingFrame, QString msg, QString defaultValue) What should my ...
0
votes
1answer
37 views

How can I print a specific part of a QWebPage in Qt?

How can I print a specific part of QWebPage in Qt? QPrinter *printer = new QPrinter(); ui->webView->print(printer);
0
votes
0answers
18 views

Modify history of QWebPage

Is it possible to add a URL to the history of a QWebPage? I see there is an interface QWebHistoryInterface for this that defines a method addHistoryEntry, but I'm not sure how that is related to the ...
1
vote
2answers
271 views

Qt/PyQt: How do I act on QWebView/QWebPage's “Open in New Window” action?

If I have an open QWebView, I like its default context menu with "Open in New Window" as an option for links. However, I can't seem to find a way to act when the user requests a link be opened in a ...
1
vote
1answer
94 views

Receiving multiple loadFinished signals for a requested web page

I'm receiving multiple loadFinished signals when I attempt to load a QWebPage and I'm not sure what's causing the issue. There were a couple of other questions that seemed to allude to the same ...
1
vote
1answer
211 views

Handling errors in QWebView / QWebPage

I wish to get more information than just success = false in loadFinished (this is most often just a canceled load). From the documentation and other posts on this site, I gathered I should subclass ...
0
votes
0answers
158 views

QWebPage createWindow! When I set body onload=window.open…, window.open return undefined

I want to rewrite QWebPage *createWindow(QWebPage::WebWindowType type) to get the open event, but when the page is like below it not work. document.write write “unfined”. If I call the function on a ...
0
votes
1answer
94 views

Qt WebKit handle checkbox checked

I need to handle checked state of checkbox in QWebView (QWebPage). More details: There are some checkboxes in HTML. We want to make changes in application when some of them are checked. To do that, ...
0
votes
1answer
99 views

QtWebView — C++ — How to get javascript string returned from linkClicked event

I have been unable to find a definitive answer to my problem. I currently have a QWebView control load an html file that is on my hard-drive, that implements a vector map with javascript actions. ...
0
votes
0answers
90 views

QWebFrame setHtml cuts html

In my application i want to parse this page: http://www.fc-moto.de/epages/fcm.sf/en_GB/?ObjectPath=/Shops/10207048/Categories/motorradhelme-Helmets/Shoei-helmets/Shoei-Qwest. That's how I get html ...
1
vote
0answers
52 views

QWebFrame print in a seperate thread

In my qt application im printing some large html code from a QWebFrame (mainFrame from a QWebPage). The html code contains some inline images and takes a while to be printed. Therefore i tried to put ...
0
votes
1answer
250 views

QWebView,How to determine whether this link is a new window?

code News::News(QWidget *parent) : QDialog(parent), ui(new Ui::News) { ui->setupUi(this); ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); ...
0
votes
1answer
66 views

How do I know if a QWebPage has finished loading?

Other than connecting a slot with QWebPage::loadFinished(), is there a way to poll its status? I didn't find a function that returns directly the percentage of it.
0
votes
0answers
175 views

not complete set my html code in sethtml in qwebview

i try set html to qwebview, but it does not complete...! my code is: void setHtml(QByteArray htmlCode, QUrl baseURL) { QWebView *view = new QWebView(this); qDebug() << "html in ...
1
vote
1answer
324 views

How to enable popups in QWebView? [Qt]

I have a very simple Qt Application which uses QtWebkit and QWebPage to render webpages. The problem is that it doesn't seem to support popups. For example, in google.com, when I click on "Gmail", a ...
1
vote
1answer
228 views

QtWebKit QWebPage::acceptNavigationRequest and POST data

is it possible to access POST data at this (QWebPage::acceptNavigationRequest) moment? I wish to peek at request's POST data there because I locked navigation and I don't have the opportunity at ...
0
votes
0answers
48 views

How save QWebPage into binary file

How save webpage(QWebpage), included all its resources(css,images) into binary file? How save multiple webpages into binary file?
1
vote
1answer
167 views

QWebPage and multithreading

I have this code: class TestThread : public QThread { public: void run() { QFile file("test.html"); file.open(QIODevice::ReadOnly); QWebPage page; ...
3
votes
1answer
523 views

How to implement a “back” action in a QWebView/QWebPage

I have a simple widget that is a QWebView. I load it with setHtml(). Most of the time this is just so the user can read the styled text, however there are a few links, and if one is clicked, the ...
0
votes
1answer
176 views

How to create Web History for my Browser

I'm new to Qt. I am Trying to create a Sample Browser Application. I had created the Browser application. Now i need to create the Web history for my application. I don't know how to do it. can ...
0
votes
1answer
101 views

QWebpage createPlugin method

can give me an idea on how to solve it. The first page contains three <object> tags: <object type="application/x-qt-plugin" classid="TabWidget" name="TabWidget" ...
0
votes
2answers
301 views

Can't receive download requests from the QWebPage in Qt

I am trying to create a download manager for a QGraphicsWebView and so far it works good except one thing: I cannot send the download request from the QWebPage to the download manager. ...
1
vote
1answer
202 views

QWebPage not working after the first load

I'm writing an application that scrapes some web pages using QWebPage. I'm having some trouble when the response is a Http redirect (e.g 302, 303, etc). The QWebPage simply does not follow the ...
0
votes
1answer
151 views

Using QWebFrame.setContent() with unicode (Python+PySide)

I'm using QWebKit to render a a pdf-page. Untill now, I used setHtml(), to feed the html code to the QMainFrame and then render() to print the content or export it to pdf. So far so good, but I want ...
2
votes
6answers
879 views

how to use QWebPage in a non-GUI application

I want to use QWebPage in a non-GUI Qt application. By that, I mean that I don't want to communicate with the window server at all. Using QtGui is not a problem, though. QWebPage internally creates ...
0
votes
1answer
323 views

how to create QWebFrame instance

How can I create an instance of a QWebFrame? (In my case, I don't really need the QWebPage instance, a single QWebFrame would be enough.)
5
votes
2answers
610 views

Create whole page screen shot using QWebPage

I am using Qt (the fancy browser example with the Qt creator) to create a screen shot of web pages using this code (taken and converted from here): QImage *image = new ...
2
votes
2answers
1k 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 ...
2
votes
1answer
287 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
404 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 ...
1
vote
0answers
417 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 ...
0
votes
1answer
598 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?
1
vote
1answer
379 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 ...
4
votes
1answer
726 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() ...
0
votes
2answers
274 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 ...
10
votes
3answers
3k 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?
1
vote
1answer
2k 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
833 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 ...
1
vote
1answer
929 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?
2
votes
1answer
2k 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 ...
0
votes
2answers
1k 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
1
vote
3answers
1k 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 ...
1
vote
1answer
3k 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 ...
2
votes
1answer
972 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 ...
4
votes
1answer
604 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
711 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 ...
11
votes
3answers
5k 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 ...

1 2