请问这个需要被关联么?另外,即使我将其关联,也会报错
Action.c(105): Error -26377: No match found for the requested parameter "us". 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(105): web_concurrent_end highest severity level was "ERROR", 9024 body bytes, 736 header bytes [MsgId: MMSG-26388]作者: Zee 时间: 2006-10-12 17:26
需要关联。签定完毕。作者: vivianken 时间: 2006-10-12 18:10
那关联后的报错该如何解决?
我已经确认过,其在recording log中 ,的确是这样的边界阿作者: 论坛守护神 时间: 2006-10-13 16:47
请教,为什么我在这个地方不用关联也可以重放呢(自动关联已关闭)?作者: xingcyx 时间: 2006-10-15 12:44
to 楼主:不要在recording log中看左右边界,应该到treeview中的sever response中去看。
to 楼上:有些关联在应用程序可能不会导致错误,这样在lr中会认为是成功的,因此你看到lr回放显示为pass,但这并不代表你的脚本是正确的,因为你可能提交了一条错误的数据给服务器,服务器只是回应了一个简单的信息,而并没有执行你需要的操作,这样就达不到测试的效果,你的测试数据是不准确的。所以,调试脚本的时候一定要确定脚本执行的是正确的操作,才算可以。作者: jackloo 时间: 2006-10-15 23:17
提示说的很清楚,你设置的参数长度不够,让你用 web_set_max_html_param_len这个函数把参数的长度设定一下。
另外,如果你不设置参数,那么你的所有web_submit_data提交都是失败的,虽然在VUG中pass了,但被测的服务器上对该提交的返回全是错误。