同一线程中不同http请求的jmeter不同线程数
jmeter different number of threads for different http request in the same thread
我正在尝试使用 JMeter 实施测试计划。
我想做以下场景:
在同一个线程中,我有 2 个 HTTP 请求
HTTP Request login
HTTP Request getStudentsName
问题是 HTTP 请求 getStudentsName 无法完成,除非我先 运行 登录,所以假设我想做 1 个用户登录,然后 50 个用户登录 getStudentsName。
如果我将 login 和 getStudentsName 放在 2 个不同的线程中 login 就会成功但是 getStudentsName 失败了。
我的问题是我可以在同一个线程中实现这个示例吗?或任何其他帮助?
谢谢。
要运行 仅登录一次,通过右键单击使用Once Only Controller 作为其父项,在UI 上插入父项。
The Once Only Logic Controller tells JMeter to process the controller(s) inside it only once per Thread, and pass over any requests under it during further iterations through the test plan.
您可以在同一个线程组中使用 HTTP Authorization Manager or HTTP Header Manager 之类的配置元素,具体取决于登录的确切含义。
我正在尝试使用 JMeter 实施测试计划。
我想做以下场景: 在同一个线程中,我有 2 个 HTTP 请求
HTTP Request login
HTTP Request getStudentsName
问题是 HTTP 请求 getStudentsName 无法完成,除非我先 运行 登录,所以假设我想做 1 个用户登录,然后 50 个用户登录 getStudentsName。
如果我将 login 和 getStudentsName 放在 2 个不同的线程中 login 就会成功但是 getStudentsName 失败了。
我的问题是我可以在同一个线程中实现这个示例吗?或任何其他帮助?
谢谢。
要运行 仅登录一次,通过右键单击使用Once Only Controller 作为其父项,在UI 上插入父项。
The Once Only Logic Controller tells JMeter to process the controller(s) inside it only once per Thread, and pass over any requests under it during further iterations through the test plan.
您可以在同一个线程组中使用 HTTP Authorization Manager or HTTP Header Manager 之类的配置元素,具体取决于登录的确切含义。