【发布时间】:2014-05-14 16:57:04
【问题描述】:
我想测试一个 Web 应用程序。假设我有一个要测试的 php 脚本
www.example.com/jmeter.php?runtest=??
带有方法 GET 的 jmeter.php 读取一个指向每个测试的 id!
我将所有 id 保存到一个 csv 文件中,并使用 CSV 数据集配置读取它们。
CSV file
8
9
10
如果我将线程(用户)的数量设置为 3,我会收到 3 个请求,但是是同一个请求!
www.example.com/jmeter.php?runtest=8
www.example.com/jmeter.php?runtest=8
www.example.com/jmeter.php?runtest=8
我想要什么?以下:
www.example.com/jmeter.php?runtest=8
www.example.com/jmeter.php?runtest=9
www.example.com/jmeter.php?runtest=10
有什么想法吗?谢谢!
【问题讨论】: