I am using Cucumber and have a step definition that does a sign up.

In that setup I have:

click_button('Sign in')

When it tries to execute this line I get:

And enter my user details and sign up features/step_definitions/basic_steps.rb:11
wrong number of arguments (0 for 2) (ArgumentError)
(eval):2:in `click_button'
./features/step_definitions/basic_steps.rb:18:in `/^enter my user details and sign up$/'
./features/basic.feature:9:in `And enter my user details and sign up'

0# Couldn't get snippet for (eval)

I have tried changing it to using an id, same problem.

I have removed the click_button and used find('#sign_in_button').click, same problem.

It also has the same problem in the login step, so I am assuming that there may be something wrong with my html, but I am using devise, so it is using the standard devise forms.

Rails is 3.1.3 and Capybara is 1.1.2.

Any ideas where I should start looking?

link|improve this question
show your step definition, please – nash Jan 15 at 9:30
why the "[SOLVED]" suffix ? – clyfe Jan 15 at 9:34
Trying to see what was happening I looked at the test.log as the test was running. The controller that is called after the signin step was throwing a 500 error. Why this should have caused the click_button to fail I do not know. But commenting out the error code caused the tests to pass. – Geoff Jan 15 at 9:37
1  
This is not a forum, but a Q&A site: if you've got an answer to your own question, please provide it, so users that come by later can read what to do. A solved suffix isn't needed, you can just mark any answer that's correct as such. – Nanne Jan 15 at 11:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.