码迷,mamicode.com
首页 > Web开发 > 详细

【Loadrunner基础知识】web_get_int_proterty

时间:2017-05-23 11:19:46      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:ret   hot   请求   download   状态码   信息   time   baidu   adr   

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

标签:ret   hot   请求   download   状态码   信息   time   baidu   adr   

原文地址:http://www.cnblogs.com/Jourly/p/6358306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!