これがキュウリに関してトリッキーなものです:
Feature: Some feature
Background:
Given I am on the root page
Scenario Outline: Relevant flash messages should appear
When I fill in some_field with: <name>
Then I should see the text: <relevant_flash>
Examples:
| name | relevant_flash |
| Some name | Some message |
Scenario Outline: Irrelevant flash messages should not appear
When I fill in some_field with: <name>
Then I should not see the text: <irrelevant_flash>
Examples:
| name | irrelevant_flash |
| Some name | Some message |
私は繰り返す必要が嫌いです:
When I fill in some_field with: <name>
しかし、明らかな理由から、単にバックグラウンドに移動することはできません。それともできますか?回避策がある場合はお知らせください...