|
在loadrunner脚本中有这样一些语句:
for (i=0; i<100, i++)
{
int s = 100;
web_custom_request(.......,
"URL=http://192.168.1.211/100/index.htm",
........
LAST);
s++;
}
条件是 s 变量的取值范围在1-29 30个数之间随机数,且用s 代替 "URL=http://192.168.1.211/100/index.htm", 中的100,请问怎么增加这个脚本?
这个问题是我刚才那个问题:http://bbs.51testing.com/thread-190266-1-1.html
的衍生出来的,所以另开了一贴!
我的做法是把 s= 100, 然后把100这个数字参数化,参数化时Parameter type 选Random Number,得出语句 s= {NewParam_2};
但是运行时提示:
Action.c (19): illegal expression
Action.c (19): syntax error; found `NewParam_2' expecting `;'
请高手继续帮助我,怎么解决这个问题,谢谢! |
|