JMeter正则表达式提取器我没有从网址

时间:2015-12-28 22:05:20

标签: jmeter beanshell

在Jmeter中,我试图使用正则表达式提取器从url中获取变量值。我还使用BeanShell Sampler从变量中获取值并将其打印到日志文件中。然后我可以在日志文件中看到我得到的值。

我认为我的正则表达式提取器设置不正确我从BeanShell脚本中收到以下错误:

Response code: 500
Response message: org.apache.jorphan.util.JMeterException: Error invoking bsh method: eval  In file: inline evaluation of: ``String session_ID = vars.get("sessionID");  log.info("session_ID = " + session_I . . . '' Encountered "vars" at line 4, column 1.

我的示例网址是:

http://localhost:8080/test1/gp/gw/ajax/desktop/herotator/record-impressions.html?ie=UTF8&aPTID=16001&cmpnId=205103067&cnttId=1&h=1A52D1&pIdent=desktop&rId=0DA6FXQ35E8JDNVES8C59&sid=14&slotName=PS4-some-testdata

我想从变量PTID中获取值并将其输出到日志文件中。然后我可以在需要时使用其他Http请求中的值。

我的BeanShell Sampler脚本是:

String session_ID = vars.get("sessionID");

log.info("session_ID = " + session_ID)
vars.put("sessionID", session_ID);

我的正则表达式提取器是:

Field to check = URL is ticked
Reference Name = sessionID
Regular Expression = PTID="(.+?)"
Template = $1$
Match No. (0 for Random): 1
Default value = session id not found

我的测试计划设置如下:

Test Plan
--Thread Group
----Http Request Default
----Http Header Manager
----Recording Controller
------Http Request
------Regular Expression Extractor
------BeanShell Sampler
------more Http Requests
----Access Log Sampler
----View Results Tree

运行脚本时,也没有任何内容写入日志文件 访问日志采样器的日志文件位置是: E:\ RL Fusion \ projects \ JMeter \ apache-jmeter-2.13 \ jmeter.log

在Http请求的查看结果树中,我可以看到响应数据选项卡中有一个PTID值。 我的正则表达式提取器没有得到这个值。

我是JMeter的新手,如果我的订单有错,请告诉我。 谢谢,

里亚兹

1 个答案:

答案 0 :(得分:2)

我的期望是你的Beanshell脚本有问题。很可能你在第3行的声明结尾处遗漏了一个分号。

要了解Beanshell脚本中问题的根源,您可以使用以下方法:

  1. debug();指令添加到Beanshell脚本(将其设为第一行)。它将触发调试输出到您从
  2. 启动JMeter的控制台窗口
  3. 将您的Beanshell代码放入“try”块中,如:

    try {
        // your code here
     }
     catch (Throwable ex) {
         log.error("Problem in Beanshell", ex);
         throw ex;
     }
    
  4. 有关JMeter中Beanshell脚本的更多信息,请参阅How to Use BeanShell: JMeter's Favorite Built-in Component文章。