关于Loadrunner [MsgId: MMSG-2638…

今天真是觉得很奇怪,用Loadrunner录制脚本一个用户登录的脚本(基于HTML的),脚本很简单;回放时,提示:
Action.c(29): web_submit_form("UserLogin.action") highest severity level was "ERROR", 172503 body bytes, 19076 header bytes [MsgId: MMSG-26388]
脚本如下:
-------------------------------------------------------------------------------------------
#include "web_api.h"
Action()
{
    web_url("ydxzfw",
        "URL=http://localhost:8000/ydxzfw",
        "Resource=0",
        "RecContentType=text/html",
        "Referer=",
        "Snapshot=t1.inf",
        "Mode=HTML",
        LAST);
    web_url("login.jsp",
        "URL=http://localhost:8000/ydxzfw/login.jsp",
        "Resource=0",
        "RecContentType=text/html",
        "Referer=",
        "Snapshot=t2.inf",
        "Mode=HTML",
        EXTRARES,
        "URL=images/login_19.gif", ENDITEM,
        LAST);
    lr_think_time(6);
    web_submit_form("UserLogin.action",
        "Snapshot=t3.inf",
        ITEMDATA,
        "Name=user_code", "Value=103203", ENDITEM,
        "Name=user_pass", "Value=123", ENDITEM,
        EXTRARES,
        "URL=images/OS%20X%20Cursor.cur", ENDITEM,
        "URL=images/index_23.gif", "Referer=http://localhost:8000/ydxzfw/MenuXzfwMenu.action?pid=2", ENDITEM,
        "URL=images/index_22.gif", "Referer=http://localhost:8000/ydxzfw/MenuXzfwMenu.action?pid=2", ENDITEM,
        "URL=images/index4_01.gif", "Referer=http://localhost:8000/ydxzfw/MenuTop.action", ENDITEM,
        "URL=images/index_05.gif", "Referer=http://localhost:8000/ydxzfw/MenuTop.action", ENDITEM,
        "URL=images/index_07.gif", "Referer=http://localhost:8000/ydxzfw/MenuTop.action", ENDITEM,
        "URL=images/index_19.gif", "Referer=http://localhost:8000/ydxzfw/MenuTop.action", ENDITEM,
        "URL=images/index_20.gif", "Referer=http://localhost:8000/ydxzfw/MenuTop.action", ENDITEM,
        "URL=images/index_39.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/index_40.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/index_41.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/index_43.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/index_42.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/index_44.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/index_49.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/cafe_biz.gif", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        "URL=images/OS%20X%20Hand.cur", "Referer=http://localhost:8000/ydxzfw/MyDesktop.action", ENDITEM,
        LAST);    
    return 0;
}
-------------------------------------------------------------------------------------------
        看完错误,我也很惊讶;这样简单的脚本(没有进行任何业务流程操作,没有加入任何自己编写的脚本)回放错误,报这样的错误,真是让人觉得莫名奇妙;开始我也是很难理解;
        最后经过分析,我改用基于URL的脚本录制方式,然后回放后,就一切ok了,问题解决。

关于其他 错误解决的办法还有其他解决办法,方法列举如下:

一、[MsgId: MERR-27979] 错误解决方法:
LR 中录制脚本时有如下问题:
在录制时一切正常,而回放时提示类似如下错误:
Action.c(41): Error -27979: Requested form not found                                [MsgId: MERR-27979]
             Action.c(41): web_submit_form highest severity level was "ERROR",              0 body bytes, 0 header bytes                       [MsgId: MMSG-27178]"

 

 这时在tree view中看不到此组件的相关URL。
 
处理方法如下:
1,  打开recording options,在internet protocol下的recording中选择recording level为HTML-based script,点击HTML Advanced,选择script type为A script containing explicit.即可。
2,  选择使用URL_based script录制。
另外,附上帮助中的这个错误代码的说明:

Message Code 27979

Requested form not found

The form was not found in the page received from the server. Possible reasons: (i) The current or a previous HTML page was changed after the script was recorded. (ii) A previous request navigated to a wrong page or failed. (iii) One or more web_submit_form arguments are missing or incorrect (especially for manually coded, parameterized, or correlated functions). (iv) The server returned an unexpected page (e.g., under excessive load).

Troubleshooting
  • If the current or previous HTML page was changed, look for the correct properties of the form used in the text (e.g., action), and change it in the script.
  • If your snapshots and extended log are disabled, enable them and run the script again.
    (i) To enable Snapshots: Select Tools > General Options > Correlation, and check the Save correlation information during replay box.
    (ii) To enable Extended Log: Select Run-time Settings > General: Log, and check Enable logging, Always send messages, Extended log, Data returned by server, Advanced trace.
  • Compare the record and replay snapshots for each step in the script from the beginning, and locate the first difference. If you identify a difference in the snapshots, locate the corresponding HTTP request in both the recording log and the extended log. Compare the requests and, if they are different, have the replay issue exactly the same request. This can be done, for example, by adding web_add_header (for adding missing headers or adjusting existing ones), web_remove_auto_header (for removing extra headers), and web_add_cookie (for missing cookies).
  • If some correlation is missing, (e.g., the recording and replay runs have different session IDs), use the correlation tool to locate and handle such cases.
二、关于highest severity level was "ERROR" 另一解决方法:

错误:

ction.c(34): Error -27727: Step download timeout (120 seconds) has expired when downloading resource(s). Set the "Resource Page Timeout is a Warning" Run-Time Setting to Yes/No to have this message as a warning/error, respectively   [MsgId: MERR-27727]
Action.c(34): web_link("****") highest severity level was "ERROR", 14506915 body bytes, 547 header bytes   [MsgId: MMSG-26388]Ending action Action.

解决方法:

取消选中run time settings-browser emulation-download non-html resources.解决 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值