- 浏览: 9161 次
- 性别:
- 来自: 北京
最新评论
文章列表
正交法设计测试用例正交法设计测试用例正交法设计测试用例正交法设计测试用例
我在测试中用到的:
web_set_option("MaxRedirectionDepth", "0", LAST);
后面的请求是一个302请求,为了截断这个302请求,让它只执行第一个请求,使用了这个函数,设置“MaxRedirectionDepth”为0,也就是URL最多重定向为1,达到了截断302请求的目的。
这个web_set_option()函数还有什么其他用法呢?
C Language:
int web_set_option(
const char *OptionID, const char *O ...
我的测试:
int MyFile2;
int LoginRes = 1;
//设置文档的位置
char *addr1="E://myPass1101.txt";
//是否输出的判断条件:请求是否返回success
LoginRes = web_reg_find("Text=success",LAST);
web_url("login.jsp",
"URL=https://passport.sohu.com/sso/login.jsp?userid={newNun}%40so ...
我的代码:
char temp;
char str[500];
lr_convert_string_encoding(lr_eval_string("麦塑料兜"),LR_ENC_SYSTEM_LOCALE, LR_ENC_UTF8 ,"temp");
strcat(str,"URL=http://passport.sohu.com/sso/login.jsp?userid=");
strcat(str,lr_eval_string("{temp}"));
strcat(str,& ...