キュウリのシナリオは次のとおりです。
Scenario: Login
Given the user is on Login page
When I sign in
私のステップ定義:
When /I sign in/ do
within("#mypage") do
fill_in 'login_id', :with => 'ccd'
fill_in 'password', :with => 'coffee'
end
click_button 'Login'
visit '/feedbacks/'
end
きゅうりを実行すると、次のエラーが表示されます。
Scenario: Login # features\heartbeat_tests.feature:20
Given the user is on Login page # features/step_definitions/heartbeat_definitions.rb:5
When I sign in # features/step_definitions/heartbeat_definitions.rb:18
undefined method `each' for nil:NilClass (ActionView::Template::Error)
D:/shoutout_web/app/views/layouts/application.html.erb:256:in
`_app_views_layouts_application_html_erb__124036717_28160832'