我在一个功能文件中有一个Scenario,我会收到一条消息来验证引号。请查看以下示例:
Scenario Outline: Testing xyz
Give you are a valid user
When you log in to the System as Richard
Then you will be welcomed with "<Msg>"
Examples:
| Msg |
| Welcome to this application "Richard" |
@Then部分的示例存根方法:
@Then
public void Welcome to this application Richard(String arg){
System.out.println(arg);
}
输出: 欢迎使用此应用程序
请注意,arg参数不包含word&#34; Richard&#34;报价。但是业务规则说消息应该在名称周围加上引号。
任何人都可以帮我编写功能文件,以便我得到#34; Richard&#34;在我的参数中有引号?
我正在使用Java + Selenium + Cucumber