loadrunner錯誤:
Action.c(33): Error -26377: No match found for the requested parameter "tianbao_biaoge_savetodo_msg". 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(33): web_custom_request("saveToDo") highest severity level was "ERROR", 19528 body bytes, 574 header bytes, 11 chunking overhead bytes [MsgId: MMSG-26387]
解決辦法:
1、確認tianbao_biaoge_savetodo_msg變量匹配條件是否正確;
2、若匹配正確,打印出來響應報文,排除響應異常導致的;
web_reg_save_param("ResponseBody", "LB=", "RB=", "Search=Body", LAST);
lr_output_message("響應報文體:\n%s",lr_eval_string("{ResponseBody}"));
3、若匹配正確且響應正確,則在匹配函數前添加函數web_set_max_html_param_len("66666");即可;