TA的每日心情 | 郁闷 2015-3-16 09:01 |
---|
签到天数: 5 天 连续签到: 1 天 [LV.2]测试排长
|
各位:
协议:WEBSERVICE
单脚本回放,成功,无误。
执行50 次时,有两次失败。在网上查了很多有关LR26366的解决方法,都未解决。
参数相关的表,也检查了,未看出问题。贴出脚本,请各位帮忙看下。不胜感激!
Action()
{
char * reslutcode88;
lr_start_transaction("conm_case");
web_set_max_html_param_len("99999999");
web_reg_find("Fail=NotFound",
"Search=Body",
"SaveCount=conm001",
"Text=Transaction success",
LAST);
web_custom_request("HTTPRequest",
"URL=http://192.168.1.1:6080/notify/m/z/conm",
"Method=POST",
"Resource=0",
"RecContentType=text/xml",
"Referer=",
"Mode=HTML",
"EncType=text/xml; charset=utf-8",
"Body=<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
"<Request>\n"
"<Type>M</Type>\n"
"<StoreId>888</StoreId>\n"
"<TrxId>{NewParam_2}</TrxId>\n"
"<StoreTrxId>{NewParam_1}</StoreTrxId>\n"
"<DeliveryResponse>1</DeliveryResponse>\n"
"<Timestamp>66</Timestamp>\n"
"<Signature>1</Signature>\n"
"</Request>",
LAST);
reslutcode88 = (lr_eval_string("{conm001}"));
if(strcmp(reslutcode88 ,"1")==0)
{
lr_output_message("服务器返回结果为成功,此条脚本通过!");
lr_end_transaction("conm_case", LR_PASS);
}
else
{
lr_error_message("由于服务器返回码非成功,此条脚本失败!");
lr_end_transaction("conm_case", LR_FAIL);
}
return 0;
} |
|