标签:text 没有 成功 web fse 注册 nbsp arch 动态
通常web_reg_find用于文本查找,其属性SaveCount是当改文本找到后该参数为1,如果没找到则为0,并且函数不会因为没找到而报错。可以用此参数值用于标志位判断。
web_reg_find("Search=Body",
"Text=Interaction ID111:",
"SaveCount=abc_count",
LAST);
lr_output_message("savecount is: %s", lr_eval_string("{abc_count}"));
//并且可以用abc_count判断退出vuer
if (abc_count== 0) {
lr_error_message ("text not found!s");
lr_exit(LR_EXIT_VUSER, LR_FAIL);
}
int web_reg_save_param(const char *ParamName, <list of Attributes>,LAST);
参数说明:
web_reg_save_param通常用于保存参数。Notfound=warning则表示当没有保存成功。函数依然还会往下执行,Notfound=error则是默认设置,遇到错误将保存并终止执行。当然你也可以在runtime setting里面设置Continue on error后。脚步此选项将无效。
web_reg_save_param("InteractionID",
"LB=incident.id%3D%22",
"RB=%22&",
"Notfound=warning",
LAST);
请注意此注册函数都是属于预注册函数。
Loadrunner web_reg_find 和web_reg_save_param 比较
标签:text 没有 成功 web fse 注册 nbsp arch 动态
原文地址:http://www.cnblogs.com/hushaojun/p/6726594.html