51Testing软件测试论坛
标题:
如何对返回的结果进行判断
[打印本页]
作者:
simonyu1987
时间:
2012-3-28 16:19
本主题需向作者支付
2 测试积点
才能浏览
作者:
jay19979246
时间:
2012-3-29 09:21
谢谢楼主~~~~
作者:
51Xiaolin
时间:
2012-3-30 13:29
//查找文本不区分大小写:Text/ic
//web_reg_find("Text/ALNUM=^hank you"...忽略大小写,并且允许在指定的字符位置使用任意字符;
//web_reg_find("Text/ALNUMLC=^hank you"...允许任何小写字符[a-z] 在指定位置;
//web_reg_find("Text/ALNUMUC=^hank you"...允许任何大写字符[A-Z]在指定的字符位置;
web_reg_find("Text/ic=thank you,",
"SaveCount=Sign_Count",
"Search=Body",
LAST);
//此处如果启用lr_start_timer可以计算出if判定检查点花费的时间,这样使用结果更精确
//timer = lr_start_timer();
if(state==0){
lr_end_sub_transaction("SignTime",LR_AUTO);
}
else{
lr_end_sub_transaction("SignTime",LR_FAIL);
}
//timer = lr_start_timer();
if(strcmp(lr_eval_string("{
Sign_Count
}"),"0")>0){
lr_output_message("Sign Success");
}
else{
lr_error_message("Sign Fail");
}
//time_elapsed = lr_end_timer(timer);
//waste = time_elapsed * 1000;
//lr_wasted_time(waste);
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2