本文介绍了Jmeter-从重定向URL获取参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试编写性能测试.
I'm trying to write performance test.
在步骤1中,我正在访问网址: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
此网址将我重定向回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 ?
推荐答案
- 添加PostProcessor =>正则表达式提取器;
-
这看起来像这样:
- Add PostProcessor => Regular Expression Extractor;
That would look like this:
进一步将此变量引用为$ {ticket}
Further reference this variable as ${ticket}
祝你好运!
这篇关于Jmeter-从重定向URL获取参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!