我有一种情况,如果控制器中有两个 http 采样器
当 if 条件为 true 时,它只运行第一个 HTTP 采样器。它不执行 HTTP 采样器2。
as example:-
if-controller ( condition true, none of the check-box got checked)
++HTTP sampler1
++HTTP sampler2
输出:- 只有 HTTP sampler1 运行。即使采样器 1 结果是通过状态,它也永远不会执行采样器 2
我知道我可以将它分成两个可以正常工作的 if 控制器。但我不希望那样。因为如果我说要基于 if-controller 执行 5 个 HTTP 采样器,那么我不应该将其拆分为 5 个 if-controller,每个 if-controller 都嵌入了单独的 HTTP 采样器。
if-controller ( condition true, none of the checkbox got checked)
++HTTP sampler1
if-controller ( condition true, none of the checkbox got checked)
++HTTP sampler2
有没有办法可以将所有 HTTP 采样器放在 IF 控制器下并执行。我尝试使用简单的控制器,但没有运气。