Loadrunner:是否捕获文档下载的响应时间?

时间:2018-07-06 21:44:00

标签: performance-testing load-testing loadrunner

我有一个Loadrunner脚本,我想捕获通过Web应用程序下载的3个文档文件的响应时间。在我当前的记录中,这些文档显示为“其他”,因此它们的响应时间不是单独计算的。

以下是录音的相关部分(我使用模糊的域名/路径不会冒任何识别客户/应用程序的风险)

web_url("2367_5", 
    "URL=https://web-application-domain/", 
    "Resource=0", 
    "RecContentType=application/json", 
    "Referer=https://web-application-domain/", 
    "Snapshot=t110.inf", 
    "Mode=HTML", 
    EXTRARES, 
    "Url=/Document/Document1/", "Referer=", ENDITEM, 
    "Url=/Document/Document2/", "Referer=", ENDITEM, 
    "Url=/Document/Document3/", "Referer=", ENDITEM, 
    LAST);

我希望将文档1,文档2和文档3的响应时间作为单独的事务处理。

我该如何实现?

谢谢。

2 个答案:

答案 0 :(得分:1)

打开HTTP日志中花费的时间,然后在测试后解析这些数据。

答案 1 :(得分:0)

只需从第一个url调用中删除多余的内容,然后对每个文档进行3个单独的调用:

web_url("Document1", 
    "URL=https://web-application-domain/Document/Document1/", //put the correct path here
    "Resource=0", 
    "RecContentType=application/json", // edit according to the content type of the doc
    "Referer=https://web-application-domain/",  // probably useless, just comment it
    "Snapshot=t110.inf", 
    "Mode=HTML", 
    LAST);