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?