我在Cucumber-jvm使用了以下步骤。如何在步骤定义中转义某些字符?
When user verifies if ABC widget exists
Then the 'The 7 Things $channel' label is displayed
在这种情况下,我需要将 7 和 $ 作为常规字符串转义。
答案 0 :(得分:3)
你可以这样做,
Then the /'The 7 Things $channel' label is displayed/
相应的步骤def将是,
@Then("^the /'The 7 Things \\$channel' label is displayed/$")
public void the_The_Things_$channel_label_is_displayed() throws Throwable {
System.out.println("hello");
}