web_get_int_property(HTTP_INFO_RETURN_CODE) 求解
一个web_url里头EXTRARES实际是用一个404的 但是我迭代5次时web_get_int_property(HTTP_INFO_RETURN_CODE) 有些返回值为200有些为404 ,没有就是没规律(前提是一定有404,因为我把一个资源请求文件名改了,服务肯定没有这个文件,一定会出现404)
问题:
我怀疑这个函数是返回的所有响应头随机取一个值。
因为如果是固定判断某个请求的话。比如web_url请求里头的,"url=http://....." 或者是判断资源请求,应该是返回的值是一样的。(别怀疑系统单个用户调试是服务器压力问题,因为我用HTTPWATCH拦截了N次都是正常的) :curse: 我把复现脚本发出来
Action()
{
int HttpRetCode;
web_url("www.baidu.com",
"URL=http://www.baidu.com/",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
EXTRARES,
"Url=/img/i2.png", ENDITEM,
"Url=http://www.baidudu.com/img/arr.gif", ENDITEM,
"Url=/js/bdsug.js?v=1.0.3.0", ENDITEM,
"Url=/favicon.ico", "Referer=", ENDITEM,
LAST);
HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);
lr_output_message("test½á¹û%d",HttpRetCode);
return 0;
}
红色的请求是禁止访问的 返回403 int HttpRetCode;
web_url("my_home",
"URL=http://my_home",
"TargetFrame=_TOP",
LAST );
HttpRetCode = web_get_int_property(HTTP_INFO_RETURN_CODE);
if (HttpRetCode == 200)
lr_log_message("The script successfully accessed the My_home home page");
else
lr_log_message("The script failed to access the My_home home page ");
}
我将URL 修改成 wwww.bbbbbbbbbbbbbbb.com
结果返回的状态也是200, 这说明了这个函数本身就有问题的 首先你要明白什么是HTTP应答,函数本身没问题,是你自己搞错了 我也搞不明白呢,求解
页:
[1]