zoukankan      html  css  js  c++  java
  • LR中判断HTTP返回状态

    有天,有个人问:我在做b/s测试,请问如何保存从服务器传回来的http头的信息,怎么能得到http状态,和状态200进行比较?

    后来,我给出的代码如下:

    Action()

    {int i;

          // [WCSPARAM WCSParam_Text1 3 200] Parameter {WCSParam_Text1} created by Correlation Studio

          web_reg_save_param("WCSParam_Text1",

                 "LB=1.1 ",

                 "RB= ",

                 "Ord=1",

                 "RelFrameId=1",

                 "Search=Headers",

                 "IgnoreRedirections=Yes",

                 LAST);

          web_url("www.hao123.com",

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

                 "Resource=0",

                 "RecContentType=text/html",

                 "Referer=",

                 "Snapshot=t1.inf",

                 "Mode=HTML",

                 LAST);

     i=atoi(lr_eval_string("{WCSParam_Text1}"));

    if (i == 200)

          lr_log_message("终于成功了!!我不容易呀!!!");

          else

          lr_log_message("唉,又失败了,不过这才是正常的!");

          return 0;

    }

    后来查了帮助,看到如下方法才好:

    Action()

    {

    int HttpRetCode;

          web_url("www.hao123.com",

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

                 "Resource=0",

                 "RecContentType=text/html",

                 "Referer=",

                 "Snapshot=t1.inf",

                 "Mode=HTML",

                 LAST);

     

       HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);

     

    if (HttpRetCode == 200)

          lr_log_message("终于成功了!!我不容易呀!!!");

          else

          lr_log_message("唉,又失败了,不过这才是正常的!");

          return 0;

    }

  • 相关阅读:
    ab命令做压测测试
    用js两张图片合并成一张图片
    Web全景图的原理及实现
    深入理解Java中的IO
    Spring AOP详解
    spring @Transactional注解参数详解
    优化MyBatis配置文件中的配置
    使用MyBatis对表执行CRUD操作
    @requestBody注解的使用
    url 拼接的一个模块furl
  • 原文地址:https://www.cnblogs.com/hushaojun/p/4485211.html
Copyright © 2011-2022 走看看