51Testing软件测试论坛

标题: 根据web页面是否取得参数,走不同得路径 [打印本页]

作者: zhengfeng    时间: 2006-6-26 12:07
标题: 根据web页面是否取得参数,走不同得路径
Load Runner,如果我想定义一个参数WCSParam_Text1,从返回的web页面取,
如果当前页面中能取到,就走某条路径,
如果当前页面中不能取到,就走另一条路径,

我的代码:
        returnValue = 1;

  // 1  定义一个参数WCSParam_Text1
        returnValue =    web_reg_save_param("WCSParam_Text1",
                "LB/IC=assignmentId=",
                "RB/IC=&",
                "Ord=2",
                "RelFrameId=1",
                "Search=Body",
                //"Notfound=warning",
                LAST);


   // 2   从返回的web页面取
        lr_start_transaction("Approve_serach");

        web_submit_data("worklist:worklist:001.page",
                "Action=http://{url}/wf_worklist/worklist:worklist:001.page",
                ... ...

        lr_end_transaction("Approve_serach", LR_AUTO);


   // 3 如果当前页面中能取到,就走某条路径,
   如果当前页面中不能取到,就走另一条路径,

  
    if (returnValue==0) {
        ... ...
    } else{
        ... ...
    }

但是每次lr 取不到参数就出错,无法实现要求,

请哪位朋友提供解决方案,谢谢。
作者: zhengfeng    时间: 2006-6-26 13:11
每次lr 取到参数时候,运行正常,运行if分支。
但是每次lr 取不到参数时,lr就报错,还没有运行 if ,else,就停止了。
作者: Zee    时间: 2006-6-26 13:15
你先单独调试通过再来说分支的问题吧,把问题简化。还有把出错信息帖出来。给别人也看看。
作者: zhengfeng    时间: 2006-6-26 13:24
Action.c(30): Error -26377: No match found for the requested parameter "WCSParam_Text1". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 256 bytes, use web_set_max_html_param_len to increase the parameter size          [MsgId: MERR-26377]
Action.c(30): Notify: Saving Parameter "WCSParam_Text1 = "
Action.c(30): web_submit_data("worklist:worklist:001.page") highest severity level was "ERROR", 12308 body bytes, 330 header bytes, 21 chunking overhead bytes          [MsgId: MMSG-26387]
作者: zhengfeng    时间: 2006-6-26 14:14
看来 我用  returnValue =    web_reg_save_param("WCSParam_Text1",
                "LB/IC=assignmentId=",
这个思路没有用。

我现在不判断returnValue ,而是判断取得参数的长度,这样就实现了。

    if (strlen(lr_eval_string("{WCSParam_Text1}"))>0){  
        ... ...
    } else{
        ... ...
    }
作者: zhengfeng    时间: 2006-6-26 14:14
标题: "Notfound=warning",
并且使用:
web_reg_save_param("WCSParam_Text1",
                "LB/IC=assignmentId=",
                "RB/IC=&",
                "Ord=2",
                "RelFrameId=1",
                "Search=Body",
               "Notfound=warning",
                LAST);


这样就不报错了。




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2