0
Hello, if someone very feral in JSOUP can help me, I’m trying to get information from a card on this site "https://www.brasileirao.com.br/". The problem is that the information is inside an unordered list that does not appear in the request. Here is the card:
Here is the list:
Here I’ll leave my code:
Document doc;
try {
doc = Jsoup.connect("https://www.brasileirao.com.br/").get();
System.out.println(doc.title());
Elements boxJogos = doc.select("section.box");
Elements lis = boxJogos.select("ul.rodadas__jogos, li.rodadas__jogos-card");
System.out.println(lis);
} catch (IOException ex) {
Logger.getLogger(HeloWorld.class.getName()).log(Level.SEVERE, null, ex);
}
//This is the way out:
TABELA | BRASILEIRÃO SÉRIE A | Brasileirao.com.br
<ul class="rodadas__jogos" id="js-rodadas-jogos"></ul>
CONSTRUÍDO COM SUCESSO (tempo total: 1 segundo)
//Como dá pra ver não saiu nem um item da lista. Se alguém puder ajudar vou ficar muito feliz. Obrigado desde já