弯弯月 发表于 2016-6-28 17:20:33

Loadrunner录制脚本添加检查点后回放总报错

脚本内容(登录部分):
   /* -------------------------------------------------------------------------------
        Script Title       :
        Script Description :
                        
                        
        Recorder Version   : 8859
   ------------------------------------------------------------------------------- */

vuser_init()
{

        web_reg_find("Text=Web Tours",
                LAST);

        web_url("welcome.pl",
                "URL=http://localhost:1080/WebTours/welcome.pl?signOff=true",
                "TargetFrame=",
                "Resource=0",
                "RecContentType=text/html",
                "Referer=http://localhost:1080/WebTours/",
                "Snapshot=t1.inf",
                "Mode=HTML",
                EXTRARES,
                "Url=http://download.cdn.mozilla.net/pub/firefox/releases/47.0/update/win32/zh-CN/firefox-47.0.complete.mar", "Referer=", ENDITEM,
                LAST);

        lr_start_transaction("login");

        web_reg_find("Text=Web Tours",
                LAST);

        lr_think_time(15);

        web_submit_data("login.pl",
                "Action=http://localhost:1080/WebTours/login.pl",
                "Method=POST",
                "TargetFrame=body",
                "RecContentType=text/html",
                "Referer=http://localhost:1080/WebTours/nav.pl?in=home",
                "Snapshot=t2.inf",
                "Mode=HTML",
                ITEMDATA,
                "Name=userSession", "Value=118841.995220737zVVcQDfpVcQVzzzHDzzHHpzVAHHf", ENDITEM,
                "Name=username", "Value=jojo", ENDITEM,
                "Name=password", "Value=bean", ENDITEM,
                "Name=login.x", "Value=71", ENDITEM,
                "Name=login.y", "Value=5", ENDITEM,
                "Name=JSFormSubmit", "Value=off", ENDITEM,
                LAST);

        lr_end_transaction("login",LR_AUTO);

        return 0;
}
结果错误如下:
vuser_init.c(29): Registering web_reg_find was successful       
vuser_init.c(33): Notify: Transaction "login" started.
vuser_init.c(34): Error -26366: "Text=Web Tours" not found for web_reg_find       
vuser_init.c(34): web_submit_data("login.pl") highest severity level was "ERROR", 795 body bytes, 225 header bytes        vuser_init.c(34): Notify: Transaction "login" ended with "Fail" status (Duration: 0.2435 Wasted Time: 0.0021).
Abort was called from an action.
小女刚开始自学这个,还望各位大侠多多指教哈!

Testboygaga 发表于 2016-6-28 17:29:07

我帮你顶下

fhhh_eyou 发表于 2016-6-29 12:16:26

1.Text=Web Tours" not found for web_reg_find:提示定义未发现。重新录制脚本。
2.vuser_init.c(34): web_submit_data("login.pl") highest severity level was "ERROR", 795 body bytes, 225 header bytes   失败。
建议功能是否实现。
重新录制脚本。

fhhh_eyou 发表于 2016-6-29 12:16:33

1.Text=Web Tours" not found for web_reg_find:提示定义未发现。重新录制脚本。
2.vuser_init.c(34): web_submit_data("login.pl") highest severity level was "ERROR", 795 body bytes, 225 header bytes   失败。
建议功能是否实现。
重新录制脚本。

jingzizx 发表于 2016-6-29 16:48:08

录制前选中Recording Options>Advanced里的Generate web_reg_find functions for page titles 选项,重新在录制试下

jingzizx 发表于 2016-6-29 16:48:21

录制前选中Recording Options>Advanced里的Generate web_reg_find functions for page titles 选项,重新在录制试下

弯弯月 发表于 2016-6-30 09:47:56

jingzizx 发表于 2016-6-29 16:48
录制前选中Recording Options>Advanced里的Generate web_reg_find functions for page titles 选项,重新在 ...

好像不是这个问题呢,那个好像是插入页面检查点的,我之前就是勾选的,不行,后来不勾选也就是脚本中不再有插入页面检查点的记录了,就只这个:        web_reg_find("Text=Web Tours",
                                                   LAST);                            然后这块就通过了呢,但是很奇怪为什么插入页面检查点就回放不通过了。

弯弯月 发表于 2016-6-30 09:53:05

fhhh_eyou 发表于 2016-6-29 12:16
1.Text=Web Tours" not found for web_reg_find:提示定义未发现。重新录制脚本。
2.vuser_init.c(34): w ...

师长,重新录制还是同样的问题哈,哎,郁闷ing.....:'(

islandhn 发表于 2016-7-25 10:50:37

没有登录成功
要关联一下userSession

zcc_ 发表于 2016-7-28 13:52:16

没有找到检查点,说明登录就没成功。同意楼上说法,一般类似id这种每次回放都会变得,就需要用到关联。
还有我也是初学者,这个检查点有的人说放上面,有的说放下面,到底应该放在哪里呢

蔷薇花yu 发表于 2019-1-9 10:23:55

刚刚我也碰到了这个问题,解决办法是:
1. 先设置关联userSession
2. 再添加检查点

蔷薇花yu 发表于 2019-1-9 10:27:56

我刚刚也碰到了这个问题,解决方法是:
1. 先添加关联userSession
2. 再添加检查点

Miss_love 发表于 2020-12-25 17:58:14

支持下
页: [1]
查看完整版本: Loadrunner录制脚本添加检查点后回放总报错