Tagged Questions
The qwebelement tag has no wiki summary.
5
votes
1answer
674 views
How to fire user-like event in QWebElement
Is it real to fire user-like events (like mouse click on link) for QWebElement?
I.e., for instance, given QWebElement from current frame (using QWebKit) for html tag ("") I want programmatically ...
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 ...
2
votes
2answers
370 views
QWebElement information where on page it is rendered?
Looks like access to DOM and rendering details of HTML tags are not availabel in qt 4.5.x .
Current snapshot QWebElement looks like proper class to be used there
Anybody can give me info if is it ...
1
vote
1answer
476 views
LIbrary issue: How do I set up QtWebKit to parse HTML?
Nick Presta showed that you can parse HTML with qt here: Library Recommendation: C++ HTML Parser
However, when I attempt to build this, I get an access violation on the "QWebFrame* frame = ...
1
vote
2answers
465 views
QtWebkit and QWebElement - Get user input?
how can i get the userinput in an input-field?
QObject::connect( webView, SIGNAL(loadStarted()), this, SLOT(slotLoadStarted()) );
void slotLoadStarted()
{
QWebFrame *frame = ...
1
vote
1answer
836 views
Qt Image From Web
I'd like PyQt to load an image and display it from the web. Dozens of examples I've found online did not work, as they are for downloading the image.
I simply want to view it.
Something like
from ...
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="" ...
1
vote
1answer
584 views
QtWebKit, QWebElement::setPlainText() problem
From Qt online help:
void QWebElement::setPlainText ( const QString & text )
Replaces the existing content of this
element with text. This is equivalent
to setting the HTML innerText
...
0
votes
0answers
208 views
QWebElement or QWebFrame without QWebPage
I receive a HTML page in a thread (not the main thread). I would like to use the HTML parsing that's provided with QWebElement, but for that I need QWebPage. Since QWebPage is creating widgets and ...
0
votes
1answer
276 views
Submitting Google with PyQT QWebElement
The following code does not reach searchResults. I have printed out documentElement.findFirst('input[name="btnG"]') and found it to be <input name="btnG" type="submit" value="Google Search" ...
0
votes
2answers
461 views
Qt: How can I receive events fired by QWebElement objects?
I want to receive notifications whenever links are clicked or text fields are changed in a Webkit instance in Qt. How can I hook up event listeners to a QWebElement?
I know I can put some ...