|
现在有这样一段脚本,大概意思就是提交那个表单操作后会出来一个列表列出所有的记录,如果没找到记录显示”There are no records“,我回放了这个脚本总是显示web_reg_save_param出错:No match found for the requested parameter "LINK". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 1024 bytes,。。。, 这个错是正常的,因为的确没有记录,那么有没有 办法控制如果出现关键字”There are no records“后web_submit_form之后的所有操作都不做呢?还要使web_reg_save_param不报错?
web_reg_save_param("LINK", "LB=&cntrNum=aa\">", "RB= </a>", LAST);
web_reg_find("Text=There are no records", LAST);
web_submit_form("。。。。。",
"Snapshot=t6.inf",
ITEMDATA,
。。。。。。。
LAST);
web_reg_save_param("EDITABLE", "LB=<input type=\"submit\" value=\"", "RB=\" name=\"button\"> ", "Ord=All", LAST);
web_link("{LINK}",
"Text={LINK}",
"Ordinal=1",
"Snapshot=t7.inf",
LAST); |
|