LoadRunner脚本实例来验证参数化的取值
问题提出: 主要想试验下,在Controller中,多个用户,多次迭代中参数的取值.
方法:
脚本: 我把取到的参数值和对应的VuserID记录下来保存到一个文件中,下面是例子的脚本
long fileopen; char *filename = "C:\\temp\\params.log"; vuser_init() { if ((fileopen = fopen(filename,"a+")) == NULL) { lr_error_message ("file isn't open,path=%s",filename); return 0; } return 0; } Action() { int id,scid; char *vuser_group; //typedef long time_t; //time_t t; long t; char *a = "{aaa}"; char *b = "{bbb}"; lr_whoami(&id, &vuser_group, &scid);
return 0; } vuser_end() { fclose(fileopen); return 0; } |
文章来源于领测软件测试网 https://www.ltesting.net/