如何描述功能和GUI详细信息中的默认状态

时间:2013-05-08 10:26:11

标签: cucumber acceptance-testing gherkin

我有一个按钮,可以在悬停时更改其标题。我有点不知道如何用短语来测试该默认状态。

目前我正在使用

    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

但在给定句子中断言默认状态感觉有点奇怪。我需要将其拆分为两种情况吗?

我应该测试一下吗?如果不是,我该如何测试这个GUI细节?

1 个答案:

答案 0 :(得分:1)

我会写两个场景。

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