我如何在Groovy中向GET请求的主体添加参数?

pjngdqdw  于 2022-11-01  发布在  其他
关注(0)|答案(1)|浏览(204)

我是一个新手,我想在JSR223 Jmeter中创建GET请求,并添加参数。我如何添加它?enter image description here
enter image description here

axkjgtzd

axkjgtzd1#

只需将它们添加到URL查询字符串中

def get = new URL("http://localhost:8080/calculator/basic/add?addend=3&augend=2")

更多信息:How to Send Groovy HTTP and HTTPS Requests
顺便说一句,为什么不使用HTTP请求采样器呢?您将免费获得连接时间和响应处理等指标,将能够使用HTTP头管理器、HTTP缓存管理器等。

相关问题