Jsoup element without id

Asked

Viewed 57 times

1

1 answer

1

With Jsoup, the search for elements does not need to be exclusively by Id. You can also search for CSS Selectors. So:

Elements elements = document.select("#main > div > div.conteudo > table");

Browser other questions tagged

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