本文介绍了Jmeter - 从重定向 URL 获取参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试编写性能测试.

I'm trying to write performance test.

在第 1 步中,我正在访问 url:https://example.com/login?redirect_to=http://somesite.com

In a step #1 I'm visiting url: https://example.com/login?redirect_to=http://somesite.com

这个 url 将我重定向回 http://somesite.com?ticket=afsgdfasdfasg

This url redirects me back to http://somesite.com?ticket=afsgdfasdfasg

在我的 JMeter 脚本中,我需要提取 ticket 参数并在进一步的逻辑中重用它.

In my JMeter script I need to extract ticket parameter and reuse it in a further logic.

你能告诉我它是如何实现的吗?

Could you please tell me how it can be achieved ?

推荐答案

  1. 添加后处理器 => 正则表达式提取器;
  2. 看起来像这样:

  1. Add PostProcessor => Regular Expression Extractor;
  2. That would look like this:

进一步将此变量引用为 ${ticket}

Further reference this variable as ${ticket}

祝你好运!

这篇关于Jmeter - 从重定向 URL 获取参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 19:00