|
本帖最后由 lchydp 于 2016-9-25 22:38 编辑
大家好!我使用的LoadRunner版本是LR11。测试程序是自带的WebTours。在打开页面的web_url函数前加了一个关联函数web_reg_save_param_ex:
web_reg_save_param_ex(
"ParamName=test",
"LB=",
"RB=",
SEARCH_FILTERS,
"Scope=Headers",
LAST);
web_url("WebTours",
"URL=http://127.0.0.1:1080/WebTours",
"TargetFrame=",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
LAST);运行后,程序得到的返回中,第一个response是一个302重定向:
内容如下:
vuser_init.c(22): Notify: Saving Parameter "test = HTTP/1.1 302 Found\r\nServer: Xitami\r\nDate: Sun, 25 Sep 2016 14:32:31 GMT\r\nContent-length: 0\r\nContent-type: text/html\r\nLocation: http://127.0.0.1:1080/WebTours/\r\n\r\nHTTP/1.1 200 Ok\r\nServer: Xitami\r\nDate: Sun, 25 Sep 2016 14:32:31 GMT\r\nContent-type: text/html\r\nContent-length: 312\r\nLast-modified: Tue, 08 May 2007 15:40:23 GMT\r\n\r\n".
我不太清楚为什么会产生这个302重定向。看重定向之后的url还是程序本来的地址http://127.0.0.1:1080/WebTours/,为什么会产生这个重定向呢?谢谢大家!
|
|