How do I use Capybara to check that a select box has certain values listed as options? It has to be compatible with Selenium...

This is the html I got:

<select id='cars'> 
  <option></option>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>

This is what I want to do.

Then the "cars" field should contain the option "audi"
link|improve this question

It would be helpful if you could post your HTML/ERB for the section in question. – polarblau Mar 22 '11 at 18:34
feedback

4 Answers

up vote 5 down vote accepted

For what it's worth, I'd call it a drop-down menu, not a field, so I'd write:

Then the "cars" drop-down should contain the option "audi"

To answer your question, here's the RSpec code to implement this (untested):

Then /^the "([^"]*)" drop-down should contain the option "([^"]*)"$/ do |id, value|
  page.should.have_xpath "//select[@id = '#{id}']/option[@value = '#{value}']"
end

If you want to test for the option text instead of the value attribute (which might make for more readable scenarios), you could write:

  page.should.have_xpath "//select[@id = '#{id}']/option[text() = '#{value}']"
link|improve this answer
Man I got to start learning xpath.. thanks – Tom Maeckelberghe Mar 25 '11 at 13:22
1  
Options should be option.. ah well, i'm doing it with this page.should have_css('select option:contains('Audi')', :visible => true). Why? Code is more readable, plus checks that the element is visible... – Tom Maeckelberghe Mar 25 '11 at 14:04
@Tom: The contains pseudo-class was taken out of the CSS spec, so I'm not sure if this will work everywhere, but other than that, CSS is just as good (and I agree it's more readable). You can use :visible on either method, by the way. Re learning XPath, I've been getting pretty far with just the examples in the spec (and these as well). – Jo Liss Mar 26 '11 at 12:47
Oh didn't now that... It's a shame they let go of 'contains()', it looks useful. I'll take a look at the XPath exemples thanks! – Tom Maeckelberghe Mar 29 '11 at 9:44
feedback

Try using page.has_select?(locator, options = {}) instead:

#Find a select box by (label) name or id and assert the given text is selected
Then /^"([^"]*)" should be selected for "([^"]*)"$/ do |selected_text, dropdown|
  page.has_select?(dropdown, :selected => selected_text).should == true
end

#Find a select box by (label) name or id and assert the expected option is present
Then /^"([^"]*)" should contain "([^"]*)"$/ do |dropdown, text|
  page.has_select?(dropdown, :options => [text]).should == true
end
link|improve this answer
For the RSpec users out there, I used page.should have_select('Something', :options => ['plain text']) – hubble Dec 13 '11 at 21:36
feedback
Then I should see "audi" within "#cars"

should do the trick

link|improve this answer
Thanks but it's not working. In cucumber "cars" would be a "field" and "within" implies a scope. So a standard step that comes close is 'Then the "cars" field should contain "Audi"'. But if nothing is selected it returns an empty string: expected: /Audi/, got: "" – Tom Maeckelberghe Mar 24 '11 at 9:51
how can cars be a field when it's clearly a select tag? you're checking if the option Audi exists in your cars dropdown right? or are you checking if it was the selected option? – corroded Mar 24 '11 at 17:04
feedback

Im facing a different version of this problem, i need to verify whether all the options are listed in the select box. How to do that with capybara?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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