I’d like to find the first instance of a checkbox using the capybara dsl. Anyone know how to do that?
I thought perhaps it’d be this, but it didn’t work:
find('input:first', :type => 'checkbox')
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Assuming Capybara.default_selector is set to CSS then:
If you’re using XPath it will be different.
Update (June 2013): as @tmg points out, the behaviour for Capybara 2 has changed.