【发布时间】:2021-05-25 08:08:18
【问题描述】:
如何使用指定的 body 数据对 POST 多个 Body 进行压力测试?
这是我的身体数据:
{
"car": {
"brand": "toyota",
"model": "avanza",
},
"customer_id": "string"
}
我如何对它进行多体压力测试?
这样的例子:
{
"car": {
"brand": "toyota",
"model": "avanza",
},
"customer_id": "string"
}
{
"car": {
"brand": "daihatsu",
"model": "xenia",
},
"customer_id": "string"
}
{
"car": {
"brand": "suzuki",
"model": "ertiga",
},
"customer_id": "string"
}
我尝试过使用User Defined Variables,但我不能使用这个,因为我需要来自brand 和model 的特定身体数据。不是这样brand = toyota, model = ertiga
【问题讨论】:
标签: java post jmeter stress-testing