我目前对 Java 和 Cucumber 有疑问。使用 Selenium 访问网站的元素,我想使用如下短语:
Then the value of the attribute XYZ should be 1000
该示例非常简单,并且通过使用 Java 注释对每个属性名称都适用
@Then("the value of the attribute (.*) should be (.*)")
除了以下用例:属性名称包含括号,如ABC(s)
.
在使用 Eclipse 和 JUnit 时,带有包含类似括号的字符串的 Cucumber 测试甚至无法完全识别,而只是左括号之前的字符串部分。有什么想法或解决方案吗?