51Testing软件测试论坛

标题: LR12手动关联 错误 -26377 [打印本页]

作者: XiaoJiong    时间: 2019-3-17 10:44
标题: LR12手动关联 错误 -26377
提示:找不到所请求参数“UserSession”的匹配项。请检查响应数据中是否存在请求的边界。此外,如果要保存的数据超过 256 字节,请使用 web_set_max_html_param_len 增加参数大小          [MsgId: MERR-26377]

哪路大神知道怎么修改,附上代码
  1. Action()
  2. {

  3.         web_url("index.htm",
  4.                 "URL=http://127.0.0.1:1080/WebTours/index.htm",
  5.                 "TargetFrame=",
  6.                 "Resource=0",
  7.                 "RecContentType=text/html",
  8.                 "Referer=",
  9.                 "Snapshot=t1.inf",
  10.                 "Mode=HTML",
  11.                 LAST);

  12.         lr_think_time(16);

  13.         //<input type="hidden" name="userSession" value="125782.779505873ztzQQfVpHcAiDDDDDiiVQpHVADcf"/>
  14.        
  15.         web_reg_save_param("UserSession",
  16.                 "LB=\"userSession\" value=\"",
  17.                 "RB=\"/>",
  18.                 LAST);

  19.        
  20.         web_submit_data("login.pl",
  21.                 "Action=http://127.0.0.1:1080/cgi-bin/login.pl",
  22.                 "Method=POST",
  23.                 "TargetFrame=body",
  24.                 "RecContentType=text/html",
  25.                 "Referer=http://127.0.0.1:1080/cgi-bin/nav.pl?in=home",
  26.                 "Snapshot=t2.inf",
  27.                 "Mode=HTML",
  28.                 ITEMDATA,
  29.                 "Name=userSession", "Value={UserSession}", ENDITEM,
  30.                 "Name=username", "Value=sh1", ENDITEM,
  31.                 "Name=password", "Value=1", ENDITEM,
  32.                 "Name=JSFormSubmit", "Value=off", ENDITEM,
  33.                 "Name=login.x", "Value=67", ENDITEM,
  34.                 "Name=login.y", "Value=8", ENDITEM,
  35.                 LAST);

  36.         lr_think_time(4);

  37.         web_url("SignOff Button",
  38.                 "URL=http://127.0.0.1:1080/cgi-bin/welcome.pl?signOff=1",
  39.                 "TargetFrame=body",
  40.                 "Resource=0",
  41.                 "RecContentType=text/html",
  42.                 "Referer=http://127.0.0.1:1080/cgi-bin/nav.pl?page=menu&in=home",
  43.                 "Snapshot=t3.inf",
  44.                 "Mode=HTML",
  45.                 LAST);

  46.         return 0;
  47. }
复制代码

作者: haibiansha    时间: 2019-3-17 23:44
web_reg_save_param 前加上        web_set_max_html_param_len("9999");
已经告诉你字节长度超了,就强制加字节呀,我一般就设成9999,一定够用
作者: XiaoJiong    时间: 2019-3-18 09:12
嗨,有人吗




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2