Assuming several multiclass divs as demonstrated in the following HTML:
<div class="class_one class_two class_three classfour classfive classsix">
<div class="class_one class_two class_three classfour classfive">
<div class="class_one class_two class_three classfour classsix">
Is there a single Jsoup select expression that will select all 3 of them?
To clarify, thinking that the "lowest common denominator" will select all 3, I tried the following:
div[class=class_one class_two class_three classfour]
But it selected none!
On the other hand, using the full multiselect syntax works, but it can only select one of the above, e.g.:
div[class=class_one class_two class_three classfour classfive classsix]
Is there a way to select all 3 of them, using a single Jsoup select statement?