51Testing软件测试论坛

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

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2975|回复: 7
打印 上一主题 下一主题

[原创] (谁能解决啊,等了一上午了,呵呵)提交表单报找不到问题,在线等。

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2009-1-8 10:30:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
写了一个脚本,提交表单数据,但一直提示无法找到该表单,请帮助看看什么问题。
脚本如下:Action()
{
        char usertoken[32];
        char Authenticator[512]={0};

         //保存返回usertoken
        web_reg_save_param("usertoken",
                        "LB=CTCGetAuthInfo('",
                        "RB=')",
                        LAST);
        web_url("index.jsp",
        "URL=http://10.42.109.12:8080/iptvepg/platform/index.jsp?UserID=test&Action=Login",
        "Resource=0",
        "RecContentType=text/html",
        "Referer=",
        "Snapshot=t1.inf",
        "Mode=HTML",
        LAST);

         //加密usertoken
        CTCGetAuthInfo(usertoken,Authenticator);

         //将加密好的authenticator提交
        web_submit_form("auth.jsp",
                "Frame=authform",
                "Action=auth.jsp",
                "Snapshot=t2.inf",
                   STARTHIDDENS,
                "Name=UserID","Value=test",ENDITEM,
                "Name=Authenticator","Value={Authenticator}",ENDITEM,
                "Name=StbIP","Value=10.42.110.50",ENDITEM,
                "Name=LastTermno","Value=2",ENDITEM,
                ENDHIDDENS,
                LAST);
                  return 0;
}


页面http://10.42.109.12:8080/iptvepg/platform/index.jsp代码如下:    <!-- get encrypt token -->
   
   
   
   
    <html>
    <head>
    <script language="javascript" type="">
    function DoAuth()
    {
        if (typeof(Authentication) == "object" && "CTCGetAuthInfo" in Authentication)
        {
            document.authform.Authenticator.value = Authentication.CTCGetAuthInfo('@@nvet0w_ZRt5T_ctWLTNUeTZRA6tpTg');
            document.authform.submit();
        }
        else
        {
            // handle error. "Authentication is not supported by current browser"
            window.location = "/iptvepg" + "/errorHandler.jsp?" + "tips" + "=EPGActM0301";
        }
    }
    </script>
    </head>
    <body bgcolor="#000000" onload="DoAuth()">
    <!-- loading page -->
   
<div  style="left:120; top:390;width:400;height:32; position:absolute">
<center>
<font color="#ffffff" size="6"><b>正在进入,请稍候…</b></font><!--???????????????ò...-->
</center>
</div>

    <form action="auth.jsp" name="authform" method="post">
      <input type="hidden" name="UserID" value="zte">
      <input type="hidden" name="Authenticator" value="">
      <input type="hidden" name="StbIP" value="10.42.119.77">
      <input type="hidden" name="LastTermno" value="2">
    </form>
    </body>
    </html>
loadrunner运行报错信息:Virtual User Script started
Starting action vuser_init.
Web Turbo Replay of LoadRunner 8.1.0 for WINXP; Web build 4788          [MsgId: MMSG-27143]
Run-Time Settings file: "D:\Program Files\Mercury\LoadRunner\scripts\http\\default.cfg"          [MsgId: MMSG-27141]
Ending action vuser_init.
Running Vuser...
Starting iteration 1.
Starting action Action.
Action.c(7): Registering web_reg_save_param was successful          [MsgId: MMSG-26390]
Action.c(11): web_url("index.jsp") was successful, 1307 body bytes, 214 header bytes          [MsgId: MMSG-26386]
Action.c(22): Error -27979: Requested form not found          [MsgId: MERR-27979]Action.c(22): web_submit_form("auth.jsp") highest severity level was "ERROR", 0 body bytes, 0 header bytes          [MsgId: MMSG-26388]
Ending action Action.
Ending iteration 1.
Ending Vuser...
Starting action vuser_end.
Ending action vuser_end.
Vuser Terminated.

[ 本帖最后由 dxf_michael 于 2009-1-8 12:33 编辑 ]
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
 楼主| 发表于 2009-1-8 10:46:06 | 只看该作者
为啥我问的问题,都没人回呢?
回复 支持 反对

使用道具 举报

  • TA的每日心情
    奋斗
    2018-2-28 18:04
  • 签到天数: 40 天

    连续签到: 1 天

    [LV.5]测试团长

    3#
    发表于 2009-1-8 11:08:58 | 只看该作者
    猜测的情况:

    这是由于你站点的限制(可能是并发数限制,或者是程序本身负载度限制)引起,请求队列过多,而web   server不能及时处理引起。
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    4#
     楼主| 发表于 2009-1-8 11:33:42 | 只看该作者
    原帖由 archonwang 于 2009-1-8 11:08 发表
    猜测的情况:

    这是由于你站点的限制(可能是并发数限制,或者是程序本身负载度限制)引起,请求队列过多,而web   server不能及时处理引起。


    ----应该不是这种情况,他报的找不到表单。
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    奋斗
    2018-2-28 18:04
  • 签到天数: 40 天

    连续签到: 1 天

    [LV.5]测试团长

    5#
    发表于 2009-1-8 11:35:48 | 只看该作者
    是何时报的,调试脚本的时候还是压力测试过程中?
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    6#
     楼主| 发表于 2009-1-8 11:43:32 | 只看该作者
    原帖由 archonwang 于 2009-1-8 11:35 发表
    是何时报的,调试脚本的时候还是压力测试过程中?



    -----------------------------
    是调试脚本过程中报的!
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    7#
     楼主| 发表于 2009-1-8 14:05:55 | 只看该作者
    将代码中的web_submit_form替换成web_submit_data就行了。

    谁能说一下,这两个函数的区别吗?
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    奋斗
    2018-2-28 18:04
  • 签到天数: 40 天

    连续签到: 1 天

    [LV.5]测试团长

    8#
    发表于 2009-1-8 14:35:32 | 只看该作者
    http://bbs.51testing.com/redirec ... amp;goto=nextnewset

    关于submit form,这里有更详细的解释

    http://foxrice.blog.sohu.com/46035850.html

    [ 本帖最后由 archonwang 于 2009-1-8 14:37 编辑 ]
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

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

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

    GMT+8, 2024-11-16 01:44 , Processed in 0.079938 second(s), 27 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

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