空手道表达式以检查值是否存在于数组中

时间:2019-03-09 17:50:58

标签: karate

这是我的示例功能文件:

Feature: Karate expression to check if status within array of status.

  Scenario: Test
    * def status = "ACTIVE"
    * def possibleStatus = ["ACTIVE", "INACTIVE"]
    * match status contains possibleStatus ?

是否有一种方法可以使用空手道表达式检查状态为“活动”还是“不活动”?

注意:绝对可以通过编写custome JS函数来实现。

1 个答案:

答案 0 :(得分:1)

这很简单。

* def status = "ACTIVE"
* def possibleStatus = ["ACTIVE", "INACTIVE"]
* match possibleStatus contains status

任何问题:)