标题: 有路过的大神看到请帮忙解决 [打印本页] 作者: wwyloveslg 时间: 2016-8-15 09:09 标题: 有路过的大神看到请帮忙解决 脚本进行手动关联,回放脚本成功,投资成功,同一个登陆用户名迭代脚本两次可以回访成功,更改脚本里的用户名,脚本可以回放成功,投资成功,但是参数化登录用户,回放脚本报错,错误如下Action.c(1689): Error -26377: No match found for the requested parameter "timestamp". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 4096 bytes, use web_set_max_html_param_len to increase the parameter size 作者: 地壳 时间: 2016-8-15 10:22
可能是因为:保存参数最大不能超过256字节,如果超过256字节可以使用int web_set_max_html_param_len (const char *length ) 函数扩大参数保存范围
例如:web_set_max_html_param_len ("1024"); //扩大参数最大保存范围为1024字节,也可以用更大的数值。
你脚本中使用这行代码试试作者: seagull1985 时间: 2016-8-15 11:00
二楼正确,说得很详细了,应该是你保存参数不成功。。。作者: jingzizx 时间: 2016-8-16 07:19
结果呢