检查点实质是检查响应文件的返回值,查看业务是否正确。(http请求返回200不代表业务准确)
—— 默认直接录制可在录制过程中对页面的文字或图片加入检查点;
—— 在脚本里手动加上检查点函数
web_reg_find("Text=Welcome,admin1",LAST);
增强型检查点 业务逻辑判断
web_reg_find("Text=Welcome,admin1", "SaveCount=para_count", LAST); //check 的函数
//验证是否找到了页面上的要检查的字符串
if (atoi(lr_eval_string("{para_count}"))>0) {
lr_output_message("login success!");
}
else{
lr_output_message("login error");
}
扩展知识 图片检查
web_image_check("web_image_check","src=/images/signoff.gif",LAST);
web_image_check("web_image_check","SRC=/WebTours/images/signoff.gif", "ALT=SignOff Button",LAST);
Verification checks not enabled. web_image_check is skipped 问题 开启 文本,图片检查
—— 自动追加检查点设置
网友评论