I'm using Selenium IDE and need to identify when an item of text has the css 'font-weight:bold' applied to it (with 'verifyAttribute')
Using the following CSS locator:
css=body.home.es ul#languages li:nth-child(2) a.selected
Selenium can find the item. I now need to dive into the CSS and confirm that font-weight:bold has been applied. The CSS of the site I am testing is:
ul.language li a.selected {
color: #FFFFFF;
font-weight: bold;
I've drawn a blank; can it be achieved this way, do I need to dive into DOM locators? Or is Java the solution? (which for me isn't that easy)
Thanks in advance for your assistance!