I\'m trying to select an item from a drop down menu using Capybara (2.1.0).
I want to select by number (meaning select the second, third, etc option).
I\'ve
another option is to add a method like this
def select_option(css_selector, value) find(:css, css_selector).find(:option, value).select_option end