woddebbmm 发表于 2011-6-14 23:31:23

用Web_reg_save_param函数实现关联的一个问题

Action()
{

    web_reg_save_param("just1", "LB=Name=userSessionValue= ", "RB= checked >", LAST );


        web_url("WebTours",
                "URL=http://127.0.0.1:1080/WebTours/",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=",
                "Snapshot=t1.inf",
                "Mode=HTML",
                LAST);

        lr_think_time(6);

        web_submit_data("login.pl",
                "Action=http://127.0.0.1:1080/WebTours/login.pl",
                "Method=POST",
                "RecContentType=text/html",
                "Referer=http://127.0.0.1:1080/WebTours/nav.pl?in=home",
                "Snapshot=t2.inf",
                "Mode=HTML",
                ITEMDATA,
                "Name=userSession", "Value={just1}", ENDITEM,                 "Name=username", "Value=jian", ENDITEM,
                "Name=password", "Value=jian+jing", ENDITEM,
                "Name=JSFormSubmit", "Value=on", ENDITEM,
                "Name=login.x", "Value=67", ENDITEM,
                "Name=login.y", "Value=13", ENDITEM,
                LAST);

        web_image("SignOff Button",
                "Alt=SignOff Button",
                "Snapshot=t3.inf",
                LAST);

        return 0;
}

运行后报错:
Action.c(9): Error -26377: No match found for the requested parameter "just1". 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(9): web_url("WebTours") highest severity level was "ERROR", 6877 body bytes, 1808 header bytes       

还有就是不大懂Web_reg_save_param函数中的RB怎么写;求帮助……先谢谢啊

polly12052000 发表于 2011-6-15 09:18:04

从(Generation log)中搜索脚本中需要关联的值,从而找到左右边界,如果有'或者"需要进行转义/' /"

夏日摸摸茶 发表于 2011-6-15 09:34:37

右边界 "RB= checked >",写错了吧 好像不是这个哦
左边界你都能找到 右边界是一样的道理的 "RB=>"

humh 发表于 2011-6-15 10:19:14

感觉是写对了,但是找到的数据超过了你设定的buf的长度,所以提示你用 web_set_max_html_param_len这个函数增加参数的长度.你检查下看看是不是有几个checked>这样的符号.

humh 发表于 2011-6-15 10:19:21

感觉是写对了,但是找到的数据超过了你设定的buf的长度,所以提示你用 web_set_max_html_param_len这个函数增加参数的长度.你检查下看看是不是有几个checked>这样的符号.

云层 发表于 2011-6-15 10:21:59

应该是右边界写错了
web_reg_save_param("just1", "LB=Name=userSessionValue= ", "RB= >", LAST );
这样应该就行了

woddebbmm 发表于 2011-6-15 10:34:15

哦 回头试试 ……多谢各位啊 {:4_90:}

woddebbmm 发表于 2011-6-16 00:07:45

调好了……我终于明白了左右边界是怎么回事了……多谢大家 哈哈哈哈哈……安

xueyou2233 发表于 2014-11-21 14:39:37

woddebbmm 发表于 2011-6-16 00:07
调好了……我终于明白了左右边界是怎么回事了……多谢大家 哈哈哈哈哈……安

怎么挑好的?我也遇到相同的问题
页: [1]
查看完整版本: 用Web_reg_save_param函数实现关联的一个问题