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.
我是新手Jmeter 4.0。
Jmeter 4.0
我希望线程组中的单个 IF 控制器使用布尔值执行 True 或 False 关系,即;0 和 1。
目前我正在使用两个带有表达式的 IF 控制器${__jexl3(${VAR}==1)}和${__jexl3(${VAR}==0)}一个值为 Count==0 的用户定义变量。
${__jexl3(${VAR}==1)}
${__jexl3(${VAR}==0)}
结果是正确的,但我希望它在单个 IF 控制器中。
使用vars.get代替${}语法和||用于连接或条件:
vars.get
${}
||
${__jexl3(vars.get("VAR")=="1" || vars.get("VAR")=="0")}