In this scenario, let's consider an element like the one below:
<div class="first_class second_class"></div>
Now, we can locate it by its classes using the following methods:
browser.div(class: 'first_class')
browser.div(class: 'second_class')
But what if we want to perform a multiple search? Can we combine them?
?browser.div(class: 'first_class second_class')
?browser.div(class: 'second_class first_class')