这对我有用:
克里特岛“ 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中停止当前线程。
解决方法我需要运行两个单独的线程组(第二个线程组具有无限循环计数)。当第一组完成后,停止第二组。我如何确定第一小组何时完成?