Cómo resolver un error de Carpincho :: ElementNotFound

Estoy atascado con el siguiente problema, esta es la primera vez que uso capibara, ¿tienes una idea de cómo puedo resolver este problema, gracias

Yo uso rails 3.0.0 y las siguientes gemas

gem 'rails', '3.0.0'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'rspec-rails'
gem 'spork'
gem 'launchy'

Tengo lo siguiente en mi senario

When I go to the new customer page
And I fill in "Email" with "[email protected]"

en mi customer_steps.rb tengo

When /^I fill in "([^"]*)" with "([^"]*)"$/ do |arg1, arg2|
  fill_in arg1, :with => arg2
end

en mi vista

- form_for @customer do |f|
  = f.label :email, 'Email'
  = f.text_field :email
  = f.submit

Cuando ejecuto mi escenario recibo este mensaje de error

 Scenario: Register new customer                  # features/manage_customers.feature:7
    When I go to the new customer page             # features/step_definitions/customer_steps.rb:1
    And I fill in "Email" with "[email protected]"  # features/step_definitions/customer_steps.rb:5
      cannot fill in, no text field, text area or password field with id, name, or label 'Email' found (Capybara::ElementNotFound)
      ./features/step_definitions/customer_steps.rb:6:in `/^I fill in "([^"]*)" with "([^"]*)"$/'
      features/manage_customers.feature:9:in `And I fill in "Email" with "[email protected]"'

Respuestas a la pregunta(2)

Su respuesta a la pregunta