如何在空手道API断言语句中放置“或”运算符

时间:2019-08-16 15:21:25

标签: karate

我想在空手道API中对断言语句使用“或”运算符。

这是我第一次尝试在空手道API中使用OR运算符:

 match response.items[0].type == 'Purchase' 

我想使用OR运算符,例如:

 match response.items[0].type == 'Purchase' or 'Freeplay'

我无法使用或语句成功执行

1 个答案:

答案 0 :(得分:0)

有时候assert是最简单的选择:

* def itemType = response.items[0].type
* assert (itemType == 'Purchase') || (itemType == 'Freeplay')

还有其他方法,请参见:https://stackoverflow.com/a/57377284/143475