Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using rspec2 and capybara for acceptance testing.

I would like to assert that link is disable or not in Capybara. How could I do it?

Thanks in advance!

share|improve this question

4 Answers

up vote 44 down vote accepted

How are you disabling the link? Is it a class you're adding? An attribute?

# Check for a link that has a "disabled" class:
page.should have_css("a.my_link.disabled")
page.should have_xpath("//a[@class='disabled']")

# Check for a link that has a "disabled" attribute:
page.should have_css("a.my_link[disabled]")
page.should have_xpath("//a[@class='disabled' and @disabled='disabled']")

# Check that the element is visible
find("a.my_link").should be_visible
find(:xpath, "//a[@class='disabled']").should be_visible

The actual xpath selectors may be incorrect. I don't use xpath often!

share|improve this answer
Thanks @idlefingers , I want to assert using xpath too. How can I do so? – kriysna Mar 2 '11 at 8:52
I've updated my answer. If the xpath selectors are wrong, you'll have to do some googling or open a new question. – idlefingers Mar 2 '11 at 9:49
thanks this answer helped :) – Sadiksha Gautam Jun 28 '11 at 4:33

Another simple solution is to access the HTML attribute you are looking for with []:

find('#my_element')['class']
# => "highlighted clearfix some_other_css_class"

find('a#my_element')['href']
# => "http://example.com

# or in general, find any attribute, even if it does not exist
find('a#my_element')['no_such_attribute']
# => ""
share|improve this answer
2  
Vrey usefull solution. Thanks! – Alexander Kuznetsov Jun 1 '12 at 21:08
I've got a string with the css location, eg. find('a#my_element[href]'), would it be possible to retrieve the value of this attribute? Trying with expressions like find('a#my_element[href]').value but doesn't seem to work :( – mickael Dec 16 '12 at 4:00
@mickael Try find('a#my_element[href]').text or find('a#my_element[href]').native . Let me know if either of those give the results you expect. – bowsersenior Dec 17 '12 at 18:59
page.should have_link('It will work this way!', {:href => '/clowns?ordered_by=clumsyness', :class => "smile"})

have_link expects a hash of options which is empty if you do not provide any. You can specify any attributes the link should have - just make sure you pass all the options in ONE hash.

Hope this helps

PS: For attributes like data-method you have to pass the attribute name as a string since the hyphen breaks the symbol.

share|improve this answer
Sticking them in curly braces seems to work for me. Thanks. – Jules Copeland Mar 23 '12 at 12:13
It never worked and doesn't work with Capybara. I don't know why 9 people upvoted this. – Andrey Botalov Mar 17 at 10:58

It was a bit messy to find out the correct xpath, here is the correct one,
using capybara 0.4.1.1

# <a href="/clowns?ordered_by=clumsyness" class="weep">View Clowns</a>  

page.should have_xpath("//a[@class='weep'][@href='/clowns?ordered_by=clumsyness']", :text => "View Clowns")

If you only have a link without a class, use

page.should have_link('View Clowns', :href => '/clowns?ordered_by=clumsyness')

Something like this will sadly not work:

page.should have_link('This will not work!', :href => '/clowns?ordered_by=clumsyness', :class => "weep")

The class option will be ignored.

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.