There is such code:
String url = "https://rozetka.com.ua/ua/notebooks/c80004/filter/"; Document document = Jsoup.connect(url).get(); Elements articles = document.select("article.pp-review-i"); Elements stars = articles.select("span.g-rating-stars-i"); Elements texts = articles.select("div.pp-review-text"); for(Element text:texts){ System.out.println(text.text()); But in the end nothing is being printed, although such classes exist for such attributes. I just met java and jsoup, and according to what I saw on the Internet, it should work ...