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 句子中断言默认状态感觉有点奇怪。我需要把它分成两种情况吗?

我什至应该对此进行测试吗?如果不是,我该如何测试这个 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 回答