JMeter 如何处理 AJAX 重定向?

发布于 2024-09-08 23:23:54 字数 436 浏览 4 评论 0原文

我们使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木槿暧夏七纪年 2024-09-15 23:23:54

首先,从将进行发布的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文