TA的每日心情 | 开心 2018-1-30 12:49 |
---|
签到天数: 4 天 连续签到: 1 天 [LV.2]测试排长
|
本帖最后由 newhackerman 于 2012-4-23 16:10 编辑
问题描述:
脚本1与脚本2:
脚本1:运行第一次成功,第二次失改,第三次成功,第四次又失败,
脚本2:运行第一次成功,第二次失改,第三次成功,第四次又失败
脚本1与脚本:第一次运行脚本1成功运行脚本2失败。再次运行任何一个脚本(1,或2)都成功,再次运行脚本(1,2)都失败。
报错如下:(说明:未使用代理,上外网也未使用代理,回放时设置也未使用代理。脚本内容只有发送头部验证信息与一个web_custom_request函数写的请求)
Action.c(18): Warning -26610: HTTP Status-Code=502 (Proxy Error) for "http://xxx.xxx.xxx.xxx/AppServer/api/searchNote.do" [MsgId: MWAR-26610]
脚本内容如下:
web_add_header("APP_AUTH","");
web_add_header("APP_CP","");
web_add_header("APP_NUMBER","手机号码");
web_custom_request("searchNote.do",
"URL=http://xxx.xxx.xxx.xxx/AppServer/api/searchNote.do",
"Method=POST",
"TargetFrame=",
"Resource=0",
"RecContentType=text/plain",
"Referer=",
// "Snapshot=t4.inf",
"Mode=HTML",
"EncType=application/json; charset=utf-8",
"Body={\"noteid\":\"\",\"content\":\"\"}",
// "Body={\"noteid\":\"\",\"content\":\"\"}",
LAST); |
|