bingchuanjinshi 发表于 2016-3-3 15:27:26

设检查点,判断事务是否通过,检查的字符明明唯一,但就是找不到,大神帮我看看吧

//Correlation comment - Do not change!Original value='NeweggAmount' Name ='CorrelationParameter_5'

        web_reg_save_param_ex(
                "ParamName=CorrelationParameter_5",
                "LB=input name=\"",
                "RB=\" type",
                SEARCH_FILTERS,
                "Scope=All",
                "RequestUrl=*/Thankyou.aspx*",
                LAST);

        web_url("Thankyou.aspx",
                "URL=http://ec.clgg.test/shopping/Thankyou.aspx?sosysno=5014308",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=",
                "Snapshot=t17.inf",
                "Mode=HTML",
                EXTRARES,
                "URL=../WebResources/2009/Default/Nest/clgg/pageSucc_02.png", "Referer=http://ec.clgg.test/shopping/Thankyou.aspx?sosysno=5014308", ENDITEM,
                "URL=../WebResources/2009/Default/Nest/clgg/pageSucc_01.png", "Referer=http://ec.clgg.test/shopping/Thankyou.aspx?sosysno=5014308", ENDITEM,
                "URL=../WebResources/2009/Default/Nest/clgg/btn-pay.png", "Referer=http://ec.clgg.test/shopping/Thankyou.aspx?sosysno=5014308", ENDITEM,
                "URL=../WebResources/2009/Default/Nest/clgg/pageSucc_03.png", "Referer=http://ec.clgg.test/shopping/Thankyou.aspx?sosysno=5014308", ENDITEM,
                LAST);
/*lr_end_transaction("提交订单", LR_AUTO);*/

if(strstr(lr_eval_string("{CorrelationParameter_5}"),"NeweggAmount")==NULL)

        lr_end_transaction("提交订单", LR_PASS);
   else
        lr_end_transaction("提交订单", LR_FAIL);

报错信息如下:
Action.c(309): Error -35061: No match found for the requested parameter "CorrelationParameter_5". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 256 bytes, use web_set_max_html_param_len to increase the parameter size       
Action.c(309): web_url("Thankyou.aspx") highest severity level was "ERROR", 26764 body bytes, 1740 header bytes       

bingchuanjinshi 发表于 2016-3-3 17:34:17

为啥没人搭理我,求搭理!

远方的小企鹅 发表于 2016-3-9 09:24:34

bingchuanjinshi 发表于 2016-3-3 17:34
为啥没人搭理我,求搭理!

你是把关联 的参数作为检查点,但是看日志报的你没关联到 所以检查点当然也找不到了

远方的小企鹅 发表于 2016-3-9 09:24:34

bingchuanjinshi 发表于 2016-3-3 17:34
为啥没人搭理我,求搭理!

你是把关联 的参数作为检查点,但是看日志报的你没关联到 所以检查点当然也找不到了

bingchuanjinshi 发表于 2016-3-10 16:35:11

远方的小企鹅 发表于 2016-3-9 09:24
你是把关联 的参数作为检查点,但是看日志报的你没关联到 所以检查点当然也找不到了

我在Response里面找了一个唯一的字符,作为关联,怎么会没有关联到呢

远方的小企鹅 发表于 2016-3-10 16:44:19

bingchuanjinshi 发表于 2016-3-3 17:34
为啥没人搭理我,求搭理!

从Action.c(309): Error -35061: No match found for the requested parameter "CorrelationParameter_5". Check whether the requested boundaries exist in the response data. Also, if the data you want to save   这里可以看出,你在关联参数的地方没找到返回的值,这个都没找到,那它下面的检查点怎么会有呢,看这个函数,你是自动关联的吗?用手写的试试看

远方的小企鹅 发表于 2016-3-10 16:46:24

bingchuanjinshi 发表于 2016-3-10 16:35
我在Response里面找了一个唯一的字符,作为关联,怎么会没有关联到呢

服务器返回动态的数据,而这个数据,在下一个请求又会用到的 这种情况需要关联
比如说:你生成的一个发贴 ID,或是订单ID,这些是动态的所以要关联,不然每次回放出错
页: [1]
查看完整版本: 设检查点,判断事务是否通过,检查的字符明明唯一,但就是找不到,大神帮我看看吧