我知道我可以在JMeter中有条件地停止线程。
在我的脚本中,我发送一个请求,然后提取他们的响应json以进一步处理它。在少数情况下,参数响应会提供一些我无法在后续步骤中处理的值。
我实际上可以通过提取另一个参数来检测此有效响应。可以根据条件重新启动线程,而不是停止它吗?
答案 0 :(得分:1)
没有脚本,您可以添加Flow Control Action(原为:Test Action)
选择目标:Current Thread
和操作:Start Next Thread Loop
它将跳过“损坏”的线程并继续到下一个线程
答案 1 :(得分:0)
对于进一步的研究者:
根据条件(即从json中提取一些数据)开始线程的另一次迭代的简单方法是使用BeanShell Sampler,如上所述。
import org.apache.jmeter.samplers.SampleResult;
import org.apache.jmeter.threads.JMeterContext;
import org.apache.jmeter.threads.JMeterContext.TestLogicalAction;
String statVar = vars.get("statusVariable"); //getting some data for condition check (statusVariable is a variable that has been set previously in the Jmeter JSON Extractor)
if(statVar.equals("NOK")){ . //checking the condition
SampleResult.setTestLogicalAction(TestLogicalAction.START_NEXT_ITERATION_OF_THRE
AD); //Starting thread again (it starts the thread from the beginning, so we may compare this to restart effect)
}