Tagged Questions
2
votes
2answers
511 views
How to access element after another element using Watir?
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. ...