JMeter 是否支持随机 select 线程组中的采样器?
Does JMeter support to select a sampler in Thread Group randomly?
在我的测试计划中,我有一个线程组和 5 个采样器。 JMeter 有没有一种方法我想 select Thread Group Randomly 中的 5 个采样器 中的一个,并且只对特定采样器 ?
添加User Defined Variables to your Test Plan and create i.e. randomSampler
variable with the value of ${__Random(0,4,)}
(use __Random() function生成0到4之间的随机数(含)
将 Switch Controller 添加到线程组并使用 ${randomSampler}
作为 "Switch Value"
将采样器放在开关控制器下
就是这样,每次您 运行 测试时,都会选择并执行随机采样器:
在我的测试计划中,我有一个线程组和 5 个采样器。 JMeter 有没有一种方法我想 select Thread Group Randomly 中的 5 个采样器 中的一个,并且只对特定采样器 ?
添加User Defined Variables to your Test Plan and create i.e.
randomSampler
variable with the value of${__Random(0,4,)}
(use __Random() function生成0到4之间的随机数(含)将 Switch Controller 添加到线程组并使用
${randomSampler}
作为 "Switch Value"将采样器放在开关控制器下
就是这样,每次您 运行 测试时,都会选择并执行随机采样器: