So far I've been using "ui->browser->page()->mainFrame()->toHtml();"
It returns fine the static HTML, but several pages use javascript, therefore a lot of parts are looking like this "Loading..." instead of the actual information.
Is there anyway to get the DOM HTML?

The specific piece of HTML that I'm trying to get right now is below;
Qt Code:
  1. <tr class="data">
  2. <td class="desc timer">
  3. <span id="Countdown">Loading...</span>
  4. </td>
  5. </tr>
To copy to clipboard, switch view to plain text mode 

And the result I'm trying to get programatically would be something like this;
Qt Code:
  1. <tr class="data">
  2. <td class="desc timer">
  3. <span id="Countdown">2h 44m 18s</span>
  4. </td>
  5. </tr>
To copy to clipboard, switch view to plain text mode 

Thanks,
LuÃ*s.