JMeter 如何处理 AJAX 重定向?
我们使用 JMeter 测试的应用程序的一个步骤会返回一个 Ajax 重定向响应,如下所示。
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta name="Ajax-Response"
content="redirect" /><meta name="Location"
content="/app/nstage.seam?cid=94369" /></head></html>
知道我们如何使用 JMeter 来处理此响应,以便它可以继续到应用程序的下一页吗?修改应用程序的行为目前并不是一个有吸引力的选择。
One step of an application we're testing using JMeter returns an Ajax redirect response, like the following.
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta name="Ajax-Response"
content="redirect" /><meta name="Location"
content="/app/nstage.seam?cid=94369" /></head></html>
Any idea how we can instrument JMeter to handle this response, so that it can proceed to the application's next page? Modifying the application's behavior is currently not an attractive option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,从将进行发布的 Http 请求采样器中禁用“自动重定向”和“跟随重定向”。
第二个添加正则表达式提取器作为该采样器的子项,其正则表达式“cid=(\d+)”(不带引号)。
添加另一个 http 采样器,该采样器将向您要传输的页面发出 GET 请求。在“随请求发送参数”处添加名称为“cid”和值 #{VARIABLE} 的参数,其中 VARIABLE 是您在正则表达式提取器中指定的名称。
从“查看结果树”中,您可以看到您将正确获取页面,没有任何 VIEWSTATE 问题。
First of all disable "Redirect Automatically" and "Follow Redirects" from the Http Request sampler that will make the post.
Second Add as a child of that sampler a Regular Expression Extractor with regular expression "cid=(\d+)" (without quotes).
Add another http sampler that will make a GET request to the page that you want to be transferd. At "Send Parameters with the request" add a parameter with name "cid" and value #{VARIABLE}, where VARIABLE is the name you assigned at Regular Expression Extractor.
From "View Results Tree" you can see that you will get the page correctly without any VIEWSTATE problems.