一直都很不清楚关联时候的边界怎么取啊。。
我的方法是在generation log 里面找到这个动态变化的值,如_form_token, 发现有一句:
<input type="hidden" name="_form_token" value="9ZZfizzw6UUzYSiRdffdDDoECqmehk61"/>
然后我就自己手动关联
web_reg_save_param("form_token",
"LB=_form_token",
"RB=/>",
"Ord=1",
"RelFrameId=1",
"Search=Body",
LAST);
修改了下要关联的地方:"Name=_form_token", "Value={form_token}", ENDITEM,
但是执行之后报错:
Action.c(80): Error -26377: No match found for the requested parameter "form_token". 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]
web_submit_data("createSuccess.htm") highest severity level was "ERROR", 9010 body bytes, 981 header bytes [MsgId: MMSG-26388]
不知道是什么原因,有谁能告诉我吗?