'!contains' 可以 "compare" 空手道中的字符串和字符串吗?
Does '!contains' can "compare" String with String in Karate?
我们非常仔细地阅读了 github 存储库,但我们找不到是否可以这样做:
'foo' !包含 'bar'。仅举例说明:
* 匹配 foo !contains { huh: '#notnull' } > json
* 匹配 foo !contains 4 > int
* 匹配 foo !contains [5, 6] > array
我们可以用字符串来做吗?
好问题,这在今天确实是不可能的,但是我们为此开了个工单:https://github.com/intuit/karate/issues/201
与此同时,您可以通过 assert
和 JavaScript:
* def foo = 'Hello World'
* assert foo.indexOf('blah') == -1
我们非常仔细地阅读了 github 存储库,但我们找不到是否可以这样做: 'foo' !包含 'bar'。仅举例说明: * 匹配 foo !contains { huh: '#notnull' } > json * 匹配 foo !contains 4 > int * 匹配 foo !contains [5, 6] > array
我们可以用字符串来做吗?
好问题,这在今天确实是不可能的,但是我们为此开了个工单:https://github.com/intuit/karate/issues/201
与此同时,您可以通过 assert
和 JavaScript:
* def foo = 'Hello World'
* assert foo.indexOf('blah') == -1