小黄瓜:带双引号元素的字符串的步骤定义

时间:2018-07-25 06:58:35

标签: cucumber gherkin

我有步骤:

Then I should see validation error "Some text"

我在步骤定义中将此字符串用于XPATH。 我也有这样的错误文本:

"Some "text""

我试图写这样的东西:

Then I should see validation error "Some \"text\""

但这没有帮助。 我该如何处理?

1 个答案:

答案 0 :(得分:1)

小黄瓜文件:

@blog 
Feature: test for stackoverflow 

    Scenario Outline: Function to validate stackoverflow.

    Then I should see validation error "Some text"

Java实现:

@Then("I should see validation error \"(.*)\"")
public void sof(String someText) {
    System.out.println("Your text is: " + someText);
}

控制台:

Your text is: Some text