我在黄瓜中输入一个特定的步骤 - 模拟按钮,然后触发它

时间:2015-02-10 10:45:33

标签: java selenium selenium-webdriver webdriver cucumber

我使用selenium来检测网页中的2个按钮。

我的测试是使用黄瓜。

不幸的是,当我进入黄瓜的特定步骤时 -

模拟按钮,但没有触发它。

这是一个已知问题吗?

我的步骤:

Feature: app inbox
  Scenario: app nav inbox
    Given There exists an admin logged in client
    And I navigate to offer "app_navigable" inbox page
    Then text should be as follows:
      | name         | visibility | text                               |
      | inbox_title1 | true       | Here’s the link to the app nav app |
      | inbox_title2 | true       | app nav mail title                 |

在此方法的第一行中点击了该按钮:

@And("^text should be as follows:$")
public void text_should_be_as_follows(List<Map<String,
        String>> previewPropList) throws Throwable {
    Map<String, String> previewProps;
    for (int i = 0; i < previewPropList.size(); i++) {

我可以添加更多数据来计算出来吗?

0 个答案:

没有答案