When testing if an element has a particular class, the test "verifyAttribute | myDiv@class | someClass" fails if the element myDiv has multiple classes. Selenium is failing to pull apart the class attribute string into multiple classes and test them each individually.
<div id="myDiv" class="someClass"> PASS
<div id="myDiv" class="otherClass someClass"> FAIL