|
用web(HTTP/HTML)协议录制的一个脚本,其中含有一个web_custom_request函数,如下
web_custom_request("passport.baidu.com_3",
"URL=https://passport.baidu.com/?login",
"Method=POST",
"RecContentType=text/html",
"Referer=https://passport.baidu.com/?login&tpl=mn",
"Snapshot=t45.inf",
"Mode=HTTP",
"Body=tpl_ok=",
EXTRARES,
LAST
);
这样回放脚本没有问题。
现在我想把其中的Body部分用参数存储,修改后的代码如下
char str[500];
strcpy(str,"Body=tpl_ok=");
web_custom_request("passport.baidu.com_3",
"URL=https://passport.baidu.com/?login",
"Method=POST",
"RecContentType=text/html",
"Referer=https://passport.baidu.com/?login&tpl=mn",
"Snapshot=t45.inf",
"Mode=HTTP",
str,
EXTRARES,
LAST
);
这时候脚本编译没问题,可以通过,但是当点击树视图时,弹出错误提醒,说web_custom_request函数属性中语句错误
web_custom_request:Syntax error in attribute
test:str
argument:8
请问这是怎么回事?
本人刚学loadrunner,希望高手多多指点 |
|