0

ホバー時にキャプションを変更するボタンがあります。そのデフォルト状態をテストする機能をどのように表現するか、ちょっと途方に暮れています。

現時点で私が使用している

    Scenario: show caption on hover
    Given I should not see an "Add Website" caption on the add new button
    When I hover over the add new button
    Then I should see an "Add Website" caption on the add new button

しかし、Given 文でデフォルト状態を主張するのは少し奇妙に感じます。これを 2 つのシナリオに分割する必要がありますか?

私はそれをテストする必要がありますか?そうでない場合、この GUI の詳細をテストするにはどうすればよいですか?

4

1 に答える 1

1

2つのシナリオを書きます。

Scenario: default caption when opening page
  When I open the XYZ page
  Then I should see the "My default" caption on the add new button

Scenario: change caption on hover
  Given I am on the XYZ page
  When I hover over the add new button
  Then I should see the "Add Website" caption on the add new button
于 2013-05-09T15:46:48.477 に答える