Cucumber/Capybara を使用して機能レベルのテストを作成しています。
これが私の機能定義です
Feature: User Signin
As a User
I want to signin
So i can use my app
Background:
Given user with "email" email and "password" password
Scenario: Signing in with correct credentials
When I go to sign in page
And I fill in "user_email" with "email"
And I fill in "user_password" with "password"
And I click "Sign in" button
Then I should go to the dashboard page
特定のページに移動したかどうかを確認するステップを定義するにはどうすればよいですか? 基本的に、次のステップをどのように定義しますか?
Then(/^I should go to the dashboard page$/) do
end
また、Cucumber/Capybara のステップ定義に関するドキュメントはありますか?