1

如何在 JMETER 中创建一个测试:

  • 总共发出 100 个请求,但是
  • 对站点 A 的每 4 个请求和
  • 对站点 B 的每 5 个请求
4

1 回答 1

3

1)您可以使用一组吞吐量控制器- 但它们只能在循环中正常工作(例如循环控制器的“孩子”)。

您可以尝试使用如下所示的内容,例如:

. . .
    Loop Controller
    Loop Count = 100
        Throughput Controller
        Percent Execution
        Throughput = 80.0
            HTTP Request Sampler
            Request to 1st site
        Throughput Controller
        Percent Execution
        Throughput = 20.0
            HTTP Request Sampler
            Request to 2nd site
. . .

查看这些以获取详细信息:

2)另一种结构只能使用循环控制器来实现,例如:

. . .
    Loop Controller
    Loop Count = 20
        Loop Controller
        Loop Count = 4
            HTTP Request Sampler
            Request to 1st site
        HTTP Request Sampler
        Request to 2nd site
. . .
于 2012-08-04T12:27:46.187 回答