I am developing an Android App. I´ve used Jsoup many times but in this case the result are empties. As I understand this happend because the web page use AJAX.
HOw can I get the results from tables of this page:
http://agencias.cat.webloteria.com.ar/#1
I am looking for the resuls on the Slide "Consultas". If I use this with Jsoup:
document = Jsoup.connect(url)
.userAgent("Mozilla/5.0 (windows NT 6.1; WOW64; rv:5.0) Gecko/20100101 Firefox/5.0")
.timeout(44000)
.get();
Elements matutina=document.select("#QuinielaExt01 > div");
String result=matutina.text();
I receive a null or empty String
Any clue?