我如何从请求jmeter获得属性
我需要从请求属性中的会话中获得一个csrftoken,并提出后请求,我该怎么做? nofollow noreferrer”>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要从请求属性中的会话中获得一个csrftoken,并提出后请求,我该怎么做? nofollow noreferrer”>
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
按照春季文档您会以看起来像:
因此您可以使用获取令牌值并将其存储到a jmeter variable 上稍后能够在需要的地方重新使用。
更多信息:
As per Spring documentation you will find the token in the response in form of HTML hidden input looking like:
so you will be able to use CSS Selector Extractor to get the token value and store it into a JMeter Variable so you will be able to re-use it later on where required.
More information: How to Load Test CSRF-Protected Web Sites