LoadRunner 技巧之添加事务(2)

发表于:2013-05-21来源:博客园作者:qileilove点击数: 标签:loadrunner
查看运行结果: Action.c(15): Notify: Transaction 登陆 started. Action.c(17): web_submit_data(login.pl) was successful, 795 body bytes, 225 header bytes [MsgId: MMSG-26386] Action.c(29): web_s

  查看运行结果:

Action.c(15): Notify: Transaction "登陆" started.
Action.c(17): web_submit_data("login.pl") was successful, 795 body bytes, 225 header bytes      [MsgId: MMSG-26386]
Action.c(29): web_submit_data("login.pl_2") was successful, 795 body bytes, 225 header bytes      [MsgId: MMSG-26386]
Action.c(45): Notify: Transaction "登陆" ended with "Pass" status (Duration: 0.5704 Wasted Time: 0.0152).

  通过运行结果我们可以很清晰地看到本次事务是pass的,整个脚本的持续时间和事务的消耗时间等。

  插入事务的方法:

  插入事务操作可以在录制脚本过程中,也可以在录制结束后进行。可以在脚本中找到需要添加事务的部分,直接插入:

  -------------------------------------------------

  lr_start_transaction("事务");

  .....

  lr_end_transaction("事务",LR_AUTO);

  ------------------------------------------------

  注意:1、开始与结束函数必须成对出现

  2、事务的名称必须一样。

  当然,我们也可以将鼠标定位到要插入事务的位置,通过菜单栏来插入事务(insert--->start transaction/end transaction)

  ---------------------------------------------------------------------------

  到些,loadrunner 脚本的一些基本设置已经介绍完了。

  相关链接:

  LoadRunner 技巧之协议分析

  LoadRunner 技巧之THML 与 URL两种录制模式分析

  LoadRunner 技巧之思考时间设置

  LoadRunner 技巧之集合点设置

  LoadRunner 技巧之自动关联

  LoadRunner 技巧之手动关联与预关联

  LoadRunner 技巧之检查点

原文转自:http://www.blogjava.net/qileilove/archive/2013/03/20/396704.html