Having a DOM of the following html;

Qt Code:
  1. <a href="?op=order">
  2. <img class="img_button" src="picture.gif"
  3. onMouseOver="this.src='some.gif';"
  4. onMouseOut="this.src='some_other.gif';"
  5. alt="" border="0">
  6. </a>
To copy to clipboard, switch view to plain text mode 
how to follow a link (href) in QWebKit (specifically QWebPage).

Please notice that it's an image that is linked.
I can't do it (and I don't want to even if I could) by simulating a mouse click as I don't use QWebView thus I don't have the page rendered.