loadrunner设置web_reg_find函数

Posted tongtongjiang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了loadrunner设置web_reg_find函数相关的知识,希望对你有一定的参考价值。

采用loadrunner自带的网站

先贴一段代码

Action()
{

web_url("welcome.pl",
"URL=http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true",
"Resource=0",
"RecContentType=text/html",
"Referer=http://127.0.0.1:1080/WebTours/",
"Snapshot=t3.inf",
"Mode=HTML",
LAST);

lr_think_time(12);

// Set up check for successful login by looking for "Welcome"

web_reg_find("Text=Welcome",

"SaveCount=Welcome_Count",

LAST);

// Now log in

web_submit_form("login.pl",
"Snapshot=t4.inf",
ITEMDATA,
"Name=username", "Value={username}", ENDITEM,
"Name=password", "Value={password}", ENDITEM,
LAST);
if (atoi(lr_eval_string("{Welcome_Count}")) > 0){ //判断如果Welcome字符串出现次数大于0

lr_output_message("Log on successful."); }//在日志中输出Log on successful

else{ //如果出现次数小于等于

lr_error_message("Log on failed"); }//在日志中输出Log on failed

return(0); }

 

web_reg_find函数的解释:

web_reg_find(

                  "SaveCount=ddd",             //定义查找计数变量名称

                  "Text=aaaa",                  //定义查找内容

                  LAST);

 

在代码执行完成以后检查是否验证通过

if (atoi(lr_eval_string("{Welcome_Count}")) > 0){ //判断如果Welcome字符串出现次数大于0

lr_output_message("Log on successful."); }//在日志中输出Log on successful

else{ //如果出现次数小于等于

lr_error_message("Log on failed"); }//在日志中输出Log on failed


              

 






















以上是关于loadrunner设置web_reg_find函数的主要内容,如果未能解决你的问题,请参考以下文章

Loadrunner web_reg_find 和web_reg_save_param 比较

loadrunner中web_reg_find使用使用方法

Loadrunner--web_find和web_reg_find的用法和区别

Loadrunner登录判断

loadrunner自动订票脚本通用;loadrunner脚本参数化,设置检查点

LoadRunner添加检查点