|
我录制了一个关于“用户登录权限控制”的脚本,第一次在controller中跑了一遍,没问题。但是再跑所有用户就全部出错,错误描述是:
You do not have a license for this Vuser type. please contact Mercury Interative to renew your license.
脚本如下:
Action()
{ lr_rendezvous("login");
lr_start_transaction("login_a");
web_set_user("10.10.202.22\\ex_queaimin",
"Novi2005",
"10.10.202.22:8080");
web_url("welcome.do",
"URL=http://10.10.202.22:8080/itsm/welcome.do",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
EXTRARES,
"Url=images/item_top.gif", ENDITEM,
"Url=images/item_left.gif", ENDITEM,
"Url=images/item.gif", ENDITEM,
"Url=images/expand.gif", ENDITEM,
"Url=images/space.gif", ENDITEM,
"Url=images/collapse.gif", ENDITEM,
"Url=images/item_right.gif", ENDITEM,
"Url=images/item_bottom.gif", ENDITEM,
"Url=images/index.gif", ENDITEM,
LAST);
web_url("null.jsp",
"URL=http://10.10.202.22:8080/itsm/null.jsp",
"Resource=0",
"RecContentType=text/html",
"Referer=http://10.10.202.22:8080/itsm/welcome.do",
"Snapshot=t2.inf",
"Mode=HTML",
LAST);
lr_end_transaction("login_a",LR_AUTO);
return 0;
} |
|