Cucumber 中的替代参数类型
Posted
技术标签:
【中文标题】Cucumber 中的替代参数类型【英文标题】:Alternative parameter type in Cucumber 【发布时间】:2020-12-26 18:27:09 【问题描述】:我有以下 Cucumber 步骤,我想测试它的第 1、2、3 等项。
When user makes a request for the 1st item
这里是它的实现
@When("user makes a request for the intst/nd/rd/th item")
看起来是正确的,但测试没有运行,我收到错误Parameter types cannot be alternative: ...
怎么了?
【问题讨论】:
【参考方案1】:替代项由空格分隔,因此参数强烈绑定到替代项。所以它期待intst
或nd
或rd
或th
。
您将不得不使用正则表达式。例如:
^user makes a request for the (\d+)(?:st|nd|rd|th) item$
【讨论】:
以上是关于Cucumber 中的替代参数类型的主要内容,如果未能解决你的问题,请参考以下文章
如何将参数传递给 Cucumber 中的@before 方法?