Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<div id="look_here">
  <a href="stackoverflow.com"><img src="xxxxxxxxxx.xxx"></a>
</div>

How would you test for this link in Capybara (and RSpec)?

The image is dynamically generated, so I just want to test by href.

share|improve this question

2 Answers

This should work:

page.should have_xpath("//a[@href='stackoverflow.com']")
share|improve this answer
up vote 1 down vote accepted
page.should have_selector "a[href='stackoverflow.com']"

See Section 5.8.1 Matching attributes and attribute values on http://www.w3.org/TR/CSS2/selector.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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