I have an element with a known id. I want to assert or verify that it has a specific class.
The HTML of the element is:
<a id="SearchList" class="something-else disabled"></a>
I want to use the id "SearchList" to locate the element and then verify that it has the class "disabled".
EDITS:
- I am using the Selenium IDE a FireFox addon.