我正在尝试在需要您先登录的网站中进行简单的负载测试。
我阅读了关于 cookie 管理器的 jmeter 文档,看起来只要我在 cookie 管理器是 sessionID 的同一线程组中发出所有请求,在 http 请求之间共享但不是我的情况。
我的简单结构是:
Thread Group
HTTP Cookie Manager
HTTP Requests Defaults
Simple Controller
http request // POST method to authenticate in the site (this works fine, I get a session id)
http request // GET method (this one should use the same session id from the previous http requests but I get a new one instead)
我使用firebug在firefox中做了同样的网页流程来查看请求/响应并且会话ID是相同的,服务器没有发送新的,所以看起来cookie管理器没有保持相同的会话ID并使用它对于所有请求。
有人可以指出我正确的方向吗?我做错了什么?