I'm trying to parse source code from : http://panoramafirm.pl/szukaj/mazowi...a/firmy,1.html

There is 15 elements with class="table". I'm trying to get them using this code :
Qt Code:
  1. QWebPage page;
  2. QWebFrame * frame = page.mainFrame();
  3. frame->setHtml(str);
  4. QWebElement document = frame->documentElement();
  5. QWebElementCollection tables = document.findAll(".table");
  6. int numTables = tables.count();
  7. qDebug() << numTables;
  8. return;
To copy to clipboard, switch view to plain text mode 

In str variable is html code of site that i've downloaded before with qnetwork manager.

This code shows me "0", but there is 15 elements with table class.

My code was working a few days ago, but I think that site was changed, and now my code is not working ;(

Can you help me solve my problem ?