I am working on a project and want to ensure that my link is styled properly:
<a class="title">My link</a>
The CSS code used to style my link is as follows:
a.title {
color: #CC3333;
}
How can I confirm that the text "My link" is displaying in red? While I know how to locate the element with css=a.title
, I am unsure of how to assert that color == "#CC3333"
in Selenium IDE. Any help would be greatly appreciated.