这对我有用:
克里特岛“ BeanShell PreProcessor”具有以下代码:
props.put("DONE", "FALSE");
使用以下代码创建“ BeanShell PostProcessor”:
int activeThreadCount =org.apache.jmeter.threads.JMeterContextService.getNumberOfThreads(); if(activeThreadCount <= 1) { props.put("DONE", "TRUE"); }
使用以下方式添加If Controller:
${__BeanShell( props.get("DONE") != null && props.get("DONE")=="TRUE")}
在If Controller中停止当前线程。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)