LoadRunner函数示例:lr_paramarr_random()

  lr_paramarr_random()函数的作用为:从一个参数数组中随机抽取一个值并以字符串形式返回。其使用方式及返回方式如下:

char * lr_paramarr_random( const char * paramArrayName);

该函数在某些测试场景下或许比较有用,如随机选择页面中一个下拉框中的值。

本次测试的WEB页面源码如下:

 <html>
<head>
</head>
<body>
<select id="mySelect">
<option>bag</option>
<option>book</option>
<option>apple</option>
</select> </body>
</html>

将该WEB页丢到Apache进行发布。

对应的LoadRunner脚本代码如下:

 Action()
{
char *str;
web_reg_save_param(
"Names",
"LB=<option>",
"RB=</option>\r\n",
"Ord=all", LAST); web_url("Test.html",
"URL=http://127.0.0.1:8080/Test.html",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
LAST); str = lr_paramarr_random("Names");
// lr_save_string(lr_paramarr_random("Names"),"name"); 通过 lr_save_string()函数,将该随机返回的参数保存到参数 ‘name' 中
  lr_message("the name is Error : %s",str);
// lr_message("the name is : %s",lr_eval_string("{name}"));
  //打印出该 'name' 参数的值
return ;
}

脚本运行的日志如下:

 Starting action Action.
Action.c(): Registering web_reg_save_param was successful [MsgId: MMSG-]
Action.c(): Notify: Saving Parameter "Names_1 = bag".
Action.c(): Notify: Saving Parameter "Names_2 = book".
Action.c(): Notify: Saving Parameter "Names_3 = apple".
Action.c(): Notify: Saving Parameter "Names_count = 3".
Action.c(): web_url("Test.html") was successful, body bytes, header bytes [MsgId: MMSG-]
Action.c(): Notify: Parameter Substitution: parameter "Names_count" = ""
Action.c(): Notify: Parameter Substitution: parameter "Names_2" = "book"
Action.c(): Notify: Saving Parameter "name = book".
Action.c(): Notify: Parameter Substitution: parameter "name" = "book"
the name is : book
Ending action Action.

脚本解释:

1、运行完web_url()函数后,web_reg_save_param()函数把三个参数的值保存在了 ‘Names’ 参数数组中。

2、lr_paramarr_random()函数从 Names 参数数组中,随机抽取一个值并以字符串的形式返回(本次返回的值是 'book' )

3、打印输出该值

上一篇:JS的常用正则表达式 验证密码(转载自用)


下一篇:npm link 安装本地模块,将本地模块cli化