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

Using Capybara, I need to assert that a form element is not present, for example, 'Then I should not see the "Username" text field'. As find throws an exception if the element isn't found, this is the best I've come up with. Is there a better way?

Then /^I should not see the "([^"]+)" ([^\s]+) field$/ do |name, type|
  begin
    # Capybara throws an exception if the element is not found
    find(:xpath, "//input[@type='#{type}' and @name='#{name}']")
    # We get here if we find it, so we want this step to fail
    false
  rescue Capybara::ElementNotFound
    # Return true if there was an element not found exception
    true
  end 
end

I'm new to Capybara, so I may be missing something obvious.

share|improve this question

2 Answers

up vote 15 down vote accepted

You can do this by making use of capybaras has_no_selector? method combined with rspecs magic matchers. You can then use it in this way:

 page.should have_no_selector(:xpath, "//input[@type='#{type}' and @name='#{name}']")

You can see more details of the assertions you can perform on the capybara documentation page here under the section entitled Querying

share|improve this answer
I knew I was overlooking something obvious :) – michaeltwofish May 7 '11 at 6:13

The best way to do this is to find the element and the assert that it is not present. Not only does this create reusable code, but the whole test won't blow up if it can't find it.

This is what I do...

define your object

def username
    page.find('.username')
end

Then interact with the object in your spec file

username.should be_true

You really shouldn't care whether or not the element is on the page (most of the time). What you care about when you're writing the tests is whether or not you can interact with that element...that's why I define the object first, and then use 'username' to interact with it...see how much reusable code you can generate? Now you can click, hover, assert the element is present, fill in text to the element, etc.

Also, you should definitely consider using css over xpath whenever possible. xpath is easier to break and harder to read.

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.