将 curl url 请求转换为 JMeter 脚本
Convert curl url request to JMeter script
我需要对来自 JMeter 的以下 CURL URL 请求进行记录和执行负载测试。
我试过了,如果我只用 http://localhost/higs/PlatformHIGServlet\
执行 url,我就可以录制脚本
但我想记录相同的 url,其中包含 url 上的 post 数据,当我在 浏览器 中尝试此操作时 我'我收到 404 错误 但在 Curl - 200 正常 。
http://localhost/higs/PlatformHIGServlet\?gs_serviceName=xxx\&gs_serviceType=yyy\
请帮助我,
提前致谢
用JMeter的HTTP(S) Test Script Recorder
记录一下就好了
准备 JMeter 进行记录。最快和最简单的方法是使用 JMeter Templates Feature:
- 从 JMeter 的主菜单中选择:
File -> Templates -> Recording
并单击 "Create"
- 展开
Workbench -> HTTP(S) Test Script Recorder
并单击 "Start"
运行 curl
命令使用 JMeter 的 HTTP(S) 测试脚本记录器作为代理
curl -x http://localhost:8888 http://localhost/higs/PlatformHIGServlet
- 捕获的请求将在
Test Plan -> Thread Group -> Recording Controller
下可用
参考文献:
我需要对来自 JMeter 的以下 CURL URL 请求进行记录和执行负载测试。
我试过了,如果我只用 http://localhost/higs/PlatformHIGServlet\
执行 url,我就可以录制脚本但我想记录相同的 url,其中包含 url 上的 post 数据,当我在 浏览器 中尝试此操作时 我'我收到 404 错误 但在 Curl - 200 正常 。
http://localhost/higs/PlatformHIGServlet\?gs_serviceName=xxx\&gs_serviceType=yyy\
请帮助我,
提前致谢
用JMeter的HTTP(S) Test Script Recorder
记录一下就好了准备 JMeter 进行记录。最快和最简单的方法是使用 JMeter Templates Feature:
- 从 JMeter 的主菜单中选择:
File -> Templates -> Recording
并单击 "Create" - 展开
Workbench -> HTTP(S) Test Script Recorder
并单击 "Start"
- 从 JMeter 的主菜单中选择:
运行
curl
命令使用 JMeter 的 HTTP(S) 测试脚本记录器作为代理curl -x http://localhost:8888 http://localhost/higs/PlatformHIGServlet
- 捕获的请求将在
Test Plan -> Thread Group -> Recording Controller
下可用
参考文献: