Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在此处记录,Gatling 的checkIf方法用于条件检查。它在 fluent API 上不可用,ScenarioBuilder但我可以在CheckSupport课堂上看到它。我搜索了互联网,找不到一个例子。
checkIf
ScenarioBuilder
CheckSupport
我正在使用加特林 2.3.1。
我在他们的单元测试中找到了一个示例,如下所示:
http("untypedCheckIf").get("/") .check( checkIf("${bool}") { jsonPath("$..foo") } )