51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1417|回复: 3
打印 上一主题 下一主题

[求助] 手动关联一直失败不知道哪里错了,还有Save_count使用后始终不显示count=几

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2015-9-29 14:23:22 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
脚本如下:
Action()
{

//关联session
        web_reg_save_param("usersession",
        "LB=userSession value=", "RB=>",
        LAST );

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

        lr_think_time(9);

    web_reg_find("Text=Welcome",
                        "SaveCount=Welcome_Count",
        LAST );

lr_start_transaction("login");
        web_submit_form("login.pl",
                "Snapshot=t7.inf",
                ITEMDATA,
                //调用session
                "Name=userSession", "Value={usersession}", ENDITEM,
                "Name=username", "Value={username}", ENDITEM,
                "Name=password", "Value={psw}", ENDITEM,
                "Name=login.x", "Value=53", ENDITEM,
                "Name=login.y", "Value=12", ENDITEM,
                LAST);
//判断count>0 则显示登陆成功 反之失败。
        if(atoi(lr_eval_string("{Welcome_Count}")) > 0)
           lr_output_message("登陆成功");
        else
                lr_error_message("登陆失败");
        lr_end_transaction("login", LR_AUTO);

        web_image_check("logoff", "Src=/WebTours/images/signoff.gif", LAST );
        web_image("SignOff Button",
                "Alt=SignOff Button",
                "Snapshot=t8.inf",
                LAST);

        return 0;
}

日志如下
Starting iteration 1.
Starting action Action.
Action.c(5): Registering web_reg_save_param was successful          [MsgId: MMSG-26390]
Action.c(9): Detected non-resource "http://127.0.0.1:1080/WebTours/header.html" in "http://127.0.0.1:1080/WebTours/"          [MsgId: MMSG-26574]
Action.c(9): Detected non-resource "http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true" in "http://127.0.0.1:1080/WebTours/"          [MsgId: MMSG-26574]
Action.c(9): Found resource "http://127.0.0.1:1080/WebTours/images/hp_logo.png" in HTML "http://127.0.0.1:1080/WebTours/header.html"          [MsgId: MMSG-26659]
Action.c(9): Found resource "http://127.0.0.1:1080/WebTours/images/webtours.png" in HTML "http://127.0.0.1:1080/WebTours/header.html"          [MsgId: MMSG-26659]
Action.c(9): Detected non-resource "http://127.0.0.1:1080/WebTours/nav.pl?in=home" in "http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true"          [MsgId: MMSG-26574]
Action.c(9): Detected non-resource "http://127.0.0.1:1080/WebTours/home.html" in "http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true"          [MsgId: MMSG-26574]
Action.c(9): Found resource "http://127.0.0.1:1080/WebTours/JSFormSubmit.js" in HTML "http://127.0.0.1:1080/WebTours/nav.pl?in=home"          [MsgId: MMSG-26659]
Action.c(9): Found resource "http://127.0.0.1:1080/WebTours/images/mer_login.gif" in HTML "http://127.0.0.1:1080/WebTours/nav.pl?in=home"          [MsgId: MMSG-26659]
Action.c(9): web_url("WebTours") was successful, 6875 body bytes, 1808 header bytes          [MsgId: MMSG-26386]
Action.c(22): Registering web_reg_find was successful          [MsgId: MMSG-26390]
Action.c(29): Notify: Transaction "login" started.
Action.c(30): Submitting form to "http://127.0.0.1:1080/WebTours/error.pl", Target Frame="body"          [MsgId: MMSG-27978]
Action.c(30): Found resource "http://127.0.0.1:1080/WebTours/images/splash_error2.jpg" in HTML "http://127.0.0.1:1080/WebTours/error.pl"          [MsgId: MMSG-26659]
Action.c(30): Found resource "http://127.0.0.1:1080/WebTours/images/startover.gif" in HTML "http://127.0.0.1:1080/WebTours/error.pl"          [MsgId: MMSG-26659]
Action.c(30): Warning -26627: HTTP Status-Code=404 (Not found) for "http://127.0.0.1:1080/WebTours/images/startover.gif"          [MsgId: MWAR-26627]
Action.c(30): Warning -26627: HTTP Status-Code=404 (Not found) for "http://127.0.0.1:1080/WebTours/images/splash_error2.jpg"          [MsgId: MWAR-26627]
Action.c(30): Registered web_reg_find successful for "Text=Welcome"          [MsgId: MMSG-26362]
Action.c(30): web_submit_form("login.pl") highest severity level was "warning", 1174 body bytes, 514 header bytes          [MsgId: MMSG-26388]
Action.c(43): Error: 登陆失败

Action.c(44): Notify: Transaction "login" ended with "Pass" status (Duration: 11.5453 Wasted Time: 0.0020).
Action.c(48): Error -27191: "logoff" failed (0 occurrence(s) found. Alt="", Src="/WebTours/images/signoff.gif")          [MsgId: MERR-27191]
Action.c(48): web_image_check highest severity level was "ERROR"          [MsgId: MMSG-26391]
Ending action Action.
Ending iteration 1.
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2015-9-29 14:25:15 | 只看该作者
红字部分,我砍别的人即使写错了至少也会显示count=0,而我这个在日志中干脆count=几都不显示。
而且关联的session始终有问题,不知道哪里错了。
请帮帮我谢谢了!
回复 支持 反对

使用道具 举报

  • TA的每日心情
    擦汗
    2015-11-11 15:40
  • 签到天数: 1 天

    连续签到: 1 天

    [LV.1]测试小兵

    3#
    发表于 2015-11-6 15:24:39 | 只看该作者
    同求这个问题,楼主你的解决了吗
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    擦汗
    2016-5-19 20:31
  • 签到天数: 5 天

    连续签到: 1 天

    [LV.2]测试排长

    4#
    发表于 2015-11-6 21:08:34 | 只看该作者
    lr的设置中需要勾选开启文本检查点,你应该是没有开启。至于没有显示count的值是应该是日志设置问题。
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-7 07:43 , Processed in 0.063449 second(s), 22 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表