vote up 2 vote down star

Hello there,

is it possible to follow a link by it's class name instead of the id, text or title? Given I have (haha, cucumber insider he?) the following html code:

<div id="some_information_container">
  <a href="edit" class="edit_button">Translation here</a>
</div>
  • I do not want to match by text because I'd have to care about the translation values in my tests
  • I want to have my buttons look all the same style, so I will use the CSS class.
  • I don't want to assign a id to every single link, because some of them are perfectly identified through the container and the link class

Is there anything I missed in Cucumber/Webrat? Or do you have some advices to solve this in a better way?

Thanks for your help and best regards,

Joe

edit: I found an interesting discussion going on about this topic right here - seems to remain an open issue for now. Do you have any other solutions for this?

flag

2 Answers

vote up 0 vote down

Does have_tag work for you?

have_tag('a.edit_button')

link|flag
vote up 0 vote down

I'm not very familiar with the WebRat API, but what about using a DOM lookup to get the reference ID of the class that you are looking for then passing that to the click_link function?

Here's a link to some javascript to retrieve an item by class. http://mykenta.blogspot.com/2007/10/getelementbyclass-revisited.html

Now that I think about it, what about using Javascript to just simply change it to some random ID then clicking that?

Either way, that should work until the frugal debate of a name to include the getbyclass function as is resolved.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.