|
我在编辑脚本之后,出现下面的错误
Action.c(403): Error -26377: No match found for the requested parameter "WCSParam_Diff1". 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 [MsgId: MERR-26377]
Action.c(403): web_submit_data("login.jsp") highest severity level was "ERROR", 16291 body bytes, 943 header bytes, 13 chunking overhead bytes [MsgId: MMSG-26387]
Ending action Action.
脚本部分代码如下:
web_reg_save_param( "WCSParam_Diff1", "LB=js/", "RB=>", "Ord=2", "Search=Body", "RelFrameId=1", LAST );
web_submit_data("login.jsp",
"Action=http://reg.163.com/login.jsp",
"Method=POST",
"RecContentType=text/html",
"Referer=http://news.163.com/",
"Snapshot=t14.inf",
"Mode=HTML",
ITEMDATA,
"Name=url", "Value=", ENDITEM,
"Name=type", "Value=1", ENDITEM,
"Name=product", "Value=content", ENDITEM,
"Name=username", "Value={u_name}", ENDITEM,
"Name=password", "Value={u_password}", ENDITEM,
LAST);
关联是自动生成的不知道原因在那里 |
|