JSOUP does not take unordered list (ul > li)

Asked

Viewed 59 times

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:

inserir a descrição da imagem aqui

Here is the list:

inserir a descrição da imagem aqui

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á

1 answer

0

Browser other questions tagged

You are not signed in. Login or sign up in order to post.