JMeter Cookie 管理器
我正在使用 JMeter 在我的网站上进行简单的登录测试。我有一个线程组,其中包含 Cookie 管理器、对根页面的 HTTP 请求、发布用户名和密码的 HTTP Post,然后是结果视图。当我运行测试并查看响应时,结果显示第一个 HTTP 请求使用 JSessionID 正确调用 set-cookie
,但 POSTS 凭据的第二个 HTTP 请求没有 cookie - 不应该这样cookie 是从 Cookie 管理器发布的吗?谢谢。
I am using JMeter to make a simple login test on my website. I have a Thread Group which contains a Cookie Manager, an HTTP request to the root page, then an HTTP Post which posts a username and password, and then a Results view. When I run the test and view the response, the results show that the first HTTP request correctly calls set-cookie
with the JSessionID, but the second HTTP request that POSTS credentials has no cookies - shouldn't this cookie be posted from the Cookie Manager? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我测试过的大多数应用程序中,我在初始请求后看不到实际的 cookie 信息。
如果您的会话没有得到维护,则需要检查一些快速事项:
1. HTTP 请求中没有硬编码的 JSessionID 值;
2。尝试不同的 cookie 管理器类型 - 不同的应用程序需要不同的设置。
In most apps that I've tested, I don't see the actual cookie information after the initial request.
If your session isn't being maintained, there are a few quick things to check:
1. there are no hard coded JSessionID values in the HTTP Requests;
2. try different cookie manager types - different applications expect different settings.