|
1、在执行脚本回放的时候,没有错误。
2、在场景运行的时候,开始没有错误。但是虚拟用户增加到70个左右就出现以下错误:
Action.c(46): Error -26377: No match found for the requested parameter "storeNameId". 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
3、出现该错误后,在脚本关联前面加上web_set_max_html_param_len("99999") ,这个函数,还是无效果。
4、后面在关联里面加上 "NotFound=WARNING"( 当在返回信息中找不到要找的内容时,只发出警告)。在运行场景就无错误信息。
web_reg_save_param_ex(
"ParamName=storeNameId",
"LB/LC=value:'",
"RB/BIN/RE='",
"NotFound=WARNING",
LAST);
5、 想请教各位大侠、大神。有更好的解决办不? 还有我加上【"NotFound=WARNING"】压力测试结果有无影响。 |
|