|
本帖最后由 itsgoodtobebad 于 2018-3-22 17:37 编辑
各位大侠,我用LR11做web网页的性能测试,
vuser_init里有一个登录,vuser_end里有一个退出,Action里是一个查询:
vuser_init()
{
web_submit_data("dologin.action",
"Action=http://10.10.38.121:8080/dologin.action",
"Method=POST",
"RecContentType=text/html",
"Referer=http://10.10.38.121:8080/ssologin.action",
"Snapshot=t22.inf",
"Mode=HTML",
ITEMDATA,
"Name=in_username", "Value={loginID}", ENDITEM,
"Name=in_pwd", "Value=2hKJ/8Uyu+jB3DMmlcqLag==", ENDITEM,
"Name=validcode", "Value=1111", ENDITEM,
LAST);
return 0;
}
Action()
{
lr_start_transaction("账单查询");
web_reg_find("Text=浜ゆ槗璁板綍",
LAST );
web_custom_request("transRecodes.action",
"URL=http://10.10.38.121:8080/record/transRecodes.action",
"Method=GET",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t64.inf",
"Mode=HTTP",
LAST);
lr_end_transaction("账单查询", LR_AUTO);
return 0;
}
vuser_end()
{
lr_think_time(5);
web_url("main.action",
"URL=http://10.10.38.121:8080/main.action",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t35.inf",
"Mode=HTML",
LAST);
web_url("logout.action",
"URL=http://10.10.38.121:8080/logout.action",
"Resource=0",
"RecContentType=text/html",
"Referer=http://10.10.38.121:8080/main.action",
"Snapshot=t39.inf",
"Mode=HTML",
LAST);
return 0;
}
单独调试没有问题,正式做测试的时候,跑两个Vuser,5分钟。跑完后发现前面的iteration全部通过,但是最后一次iteration会报错:vuser_end.c(7): Error -26366: "Text=浜ゆ槗璁板綍" not found for web_reg_find
Passed Transactions 1618
Failed Transactions 2
Errors 2
无论跑多久的压力测试,只有最后一次iteration会失败。
如果我跑5个并发,那就会Errors 5(每个Vuser的最后一次Iteration会失败)。
请教各位大侠,遇到过类似的情况没,该如何处理?
我自己猜测是Vuser在stop的时候,没有比较优雅的stop,不知道该怎么办?
多谢多谢。
注:那个乱码是有意这样设置的(因为没有去设置编码,看上去是乱码,其实能find的) |
|