我有步骤:
Then I should see validation error "Some text"
我在步骤定义中将此字符串用于XPATH。 我也有这样的错误文本:
"Some "text""
我试图写这样的东西:
Then I should see validation error "Some \"text\""
但这没有帮助。 我该如何处理?
答案 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