I have a page with HTML like this:

<a>text</a>
<img src="image.png" />
<a>text</a>

I would like to click the second link. Links have completely identical attributes. The only thing that is different is that the second link is after an image.

This always clicks the first link:

browser.link(:text, "text").click
link|improve this question

feedback

2 Answers

You can also do:

browser.link(:text=>"text",:index=>2)

In general, you can include any combination of conditions via a ruby hash.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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