Reviewsq.size();
for (int i=0; i < 2; i++) {
String rev = Reviewsq.get(i).text() + "\n";
if (rev.isEmpty()) {
break;
}
}
I want to break and continue to other elements after the element is not found in Jsoup though am getting the above errors any idea how to rectify this ?