被session关联逼疯了
本人初学者 想做关于session关联的测试但是测试中始终无法完成手动关联session加载 和 自动session关联加载
还望各位大神伸出上帝之手予以援助
本人使用测试的网站用的就是 LoadRunner11 自带的机票系统
正常录制脚本 脚本运行一次
执行一次脚本
先说手动关联
在value=一堆码的命令组以上的地方 按ALT+insert选择web_reg_save_param
在tree中找到了<input type=hidden name=userSession value=114671.720048603fiQitczpzDfDQApffQz>
名字取:1111
左边界:userSession value=
右边界:>
在脚本中生成为
web_reg_save_param("1111",
"LB=userSession value=",
"RB=>",
LAST);
然后我对value=的值进行关联
web_submit_data("login.pl",
"Action=http://127.0.0.1:1080/WebTours/login.pl",
"Method=POST",
"RecContentType=text/html",
"Referer=http://127.0.0.1:1080/WebTours/nav.pl?in=home",
"Snapshot=t10.inf",
"Mode=HTTP",
ITEMDATA,
"Name=userSession", "Value={1111}", ENDITEM,
"Name=username", "Value=xcx", ENDITEM,
"Name=password", "Value=xcx", ENDITEM,
"Name=JSFormSubmit", "Value=on", ENDITEM,
"Name=login.x", "Value=28", ENDITEM,
"Name=login.y", "Value=9", ENDITEM,
LAST);
好了 正常来说这个关联结束了
但是点击运行之后就会报错 ,本人按照教学视频一步一步执行 他没出错我出错
这是为什么 错在哪
错误提示是
Action.c(105): Error -26377: No match found for the requested parameter "1111". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 256 bytes, use web_set_max_html_param_len to increase the parameter size
Action.c(105): web_submit_data("login.pl") highest severity level was "ERROR", 795 body bytes, 225 header bytes
检查下左右边界 julyzd123 发表于 2014-11-11 16:03
检查下左右边界
嘿我的左右边界有问题么看代码了么 xcx195945187 发表于 2014-11-12 13:56
嘿我的左右边界有问题么看代码了么
你都没贴出来,怎么看? 关联函数的位置放的不对!
应该是:
web_reg_save_param_ex(
"ParamName=1111",
"LB=userSession value=",
"RB=>",
LAST);
web_url("WebTours",
"URL=http://127.0.0.1:1080/WebTours/",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t4.inf",
"Mode=HTML",
LAST);
web_submit_data("login.pl",
"Action=http://127.0.0.1:1080/WebTours/login.pl",
"Method=POST",
"RecContentType=text/html",
"Referer=http://127.0.0.1:1080/WebTours/nav.pl?in=home",
"Snapshot=t5.inf",
"Mode=HTML",
ITEMDATA,
"Name=userSession", "Value={1111}", ENDITEM,
"Name=username", "Value=jojo", ENDITEM,
"Name=password", "Value=bean", ENDITEM,
"Name=JSFormSubmit", "Value=on", ENDITEM,
"Name=login.x", "Value=62", ENDITEM,
"Name=login.y", "Value=4", ENDITEM,
LAST); 关联函数的位置放置不对,应该放在
web_url("WebTours",
"URL=http://127.0.0.1:1080/WebTours/",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t4.inf",
"Mode=HTML",
LAST);
之前,而不是web_submit_data()函数前。
页:
[1]