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!
|
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! |
|||
|
|
|
How are you disabling the link? Is it a class you're adding? An attribute?
The actual xpath selectors may be incorrect. I don't use xpath often! |
|||||||
|
|
Another simple solution is to access the HTML attribute you are looking for with
|
|||||||||
|
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. |
|||||
|
|
It was a bit messy to find out the correct xpath, here is the correct one,
If you only have a link without a class, use
Something like this will sadly not work:
The class option will be ignored. |
|||
|
|