Hi there,
Hoping someone can help with this or point out alternative options for testing for the presence of a css class on a specific element.
We're using rspec and I would like to check for the presence of a specific css class ('current') on an element (link).
response.should have_tag('a#some_link')
I was hoping that the have_tag matcher might have some option to specify a class to match but can't gleam anything from the docs.
Any suggestions would be really welcome?
Armand