Loadrunner基础知识web_get_int_proterty

Posted Jourly的测试博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Loadrunner基础知识web_get_int_proterty相关的知识,希望对你有一定的参考价值。

1.函数作用:记录http请求的响应信息

2.函数参数:

   HTTP_INFO_RETURN_CODE : http请求返回的状态码;

   HTTP_INFO_DOWNLOAD_SIZE : 返回页面下载的大小

   HTTP_INFO_DOWNLOAD_TIME : 返回页面下载的时间

3.使用位置:用在请求发生的后面。

4.举例:

Action() {  

 int HttpRetCode ;

 int size;

 int time;

 //http接口访问  web_url("www.baidu.com",

    "URL=http://www.baidu.com",

    "TargetFrame=",

    "Resource=0",

    "RecContentType=text/html",

    "Snapshot=t1.inf",

    "Mode=HTML",

    LAST );

 HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);

 size = web_get_int_property(HTTP_INFO_DOWNLOAD_SIZE);

 time = web_get_int_property(HTTP_INFO_DOWNLOAD_TIME);

 if(HttpRetCode == 200){   

  lr_log_message("successful");  }else{

  lr_log_message("fail");  

}

 lr_log_message("size is %d",size);

 lr_log_message("time is %d",time);

 return 0; }

 

以上是关于Loadrunner基础知识web_get_int_proterty的主要内容,如果未能解决你的问题,请参考以下文章

LoadRunner界面分析

性能测试——LoadRunner——入门基础概念

loadrunner学习--基础知识

LoadRunner性能测试基础知识问答

LoadRunner基础

loadrunner简单小知识