为啥我的lr捕获不到响应信息的值呢
我在服务器上有个test.jsp的文件,内容如下:hello <%=request.getParameter("username")%> and time is: <%=request.getParameter("time")%>
我想通过lr发一个post请求,包括用户名和时间,现在我想捕获响应信息的用户名,lr的代码如下:
Action()
{
char* username;
web_reg_save_param("uname",
"Notfound=warning",
"LB=hello ",
"RB= and time",
"Search=All",
LAST);
web_custom_request("用户名时间参数请求",
"Method=POST",
"URL=http://localhost:8080/uname/test.jsp",
"Resource=0",
"RecContentType=text/html",
"EncType=text/html",
"Mode=HTML",
"Body=username=vincent&time=20140827",
LAST);
username=lr_eval_string("{uname}");
lr_output_message(username);
return 0;
}
但是最后捕获不到,显示null,不知道是哪里的问题,对于body的写法我不太清楚,是这样写吧?还是别的什么地方有问题,有哪位高人麻烦给看看? body的写法不一定对,要录制一下才知道是怎么样的了 找到原因了,是下面这个设置错了
应该设置成下面这样:
"RecContentType=application/x-www-form-urlencoded",
"EncType=application/x-www-form-urlencoded", 回复 3# vincenthan
原来如此,搞定就好 学习- -
页:
[1]