|
错误的概率非常高。
所有的error都是:
Action.c(50): Error -26377: No match found for the requested parameter "sellparam3". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 10000000 bytes, use web_set_max_html_param_len to increase the parameter size, Snapshot Info [MSH 75 4]
都是在进入页面的时候才会发生这个错误。
在脚本中:
web_set_max_html_param_len( "10000000" );
web_reg_save_param("sellparam3",
"LB=margin:1% 0 0 4%;\"><input type=\"hidden\" name=\"_eosFlowKey\" value=\"",
"RB=\" />",
"Search=Body",
LAST);
web_set_max_html_param_len( "10000000" );
web_reg_save_param("sellparam4",
"LB=_eosFlowDataContext\" value=\"",
"RB=\" /><input type=\"hidden\" name=\"_eosFlowID\" value=",
"Search=Body",
LAST);
在进行测试脚本的时候,没有任何报错,数据正确提交,应该是没错的,但是在压力测试的时候,总会出现这样的错误,随着时间和虚拟用户数增加,错误的比率也会提高。
保存了日志:
Start auto log messages stack - Iteration 303. [MsgId: MMSG-10545]
Action.c(50): Found resource "http://ip:7001/app/common/scripts/eos-web.js.gzip" in HTML "http://ip:7001/app.flow" [MsgId: MMSG-26659]
Action.c(50): Found resource "http://ip:7001/cisf/common/lib/mootools.js" in HTML "http://ip:7001/app.flow" [MsgId: MMSG-26659]
Action.c(50): Downloading resource "http://ip:7001/app/supres/images/btn-bg.gif" (specified by argument number 10) [MsgId: MMSG-26577]
Action.c(50): Downloading resource "http://ip:7001/app/supres/images/sor_header.jpg" (specified by argument number 12) [MsgId: MMSG-26577]
Action.c(50): Error -26377: No match found for the requested parameter "sellparam3". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 10000000 bytes, use web_set_max_html_param_len to increase the parameter size, Snapshot Info [MSH 303 4] [MsgId: MERR-26377]
Action.c(50): Error -26377: No match found for the requested parameter "sellparam4". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 10000000 bytes, use web_set_max_html_param_len to increase the parameter size, Snapshot Info [MSH 303 4] [MsgId: MERR-26377]
End auto log messages stack. [MsgId: MMSG-10544]
这个有没有办法解决呢? |
|