3
Feature:player
@all

  Scenario Outline:Where is the player

    Given I navigate to Google
    When I enter < player> in the search field
    Then the text < keyword1> should be present

    @current @football
    Examples:
      | player  | keyword1   |
      | Rooney  | Manchester |
      | Gerrard | Liverpool  |
      | Terry   | Chelsea    |
    @old @football
    Examples:
      | player          | keyword1   |
      | Eric Cantona    | Manchester |

Eric Cantona の代わりに Cantona と書くと動作しますが、文字列に空白を挿入してプログラムを実行するとすぐにエラーが発生します。

4

2 に答える 2