zoukankan      html  css  js  c++  java
  • loadrunner 添加事务 与参数化 、集合点

    1.事务、计算单个请求的相应时间

      添加事务 (事务是可以嵌套的、但必须成对的)

    lr_start_transaction('openshouye')  事务开始  
    
    lr_end_transaction('openshouye')    事务结束

    lr_get_transaction_duration('openshouye') 获取事务时间(包含浪费时间)
    必须放置事务结束之前(Removes wasted time from all open transactions)
    lr_get_transaction_vasted_time('openshouye')  获取浪费时间
    必须放置事务结束之前(Removes wasted time from all open transactions)

    2. 手动设置事务的状态

    lr_set_transaction_status 

    3. 计算代码片段的时间

    time =lr_start_time()
    
    waster=lr_end_time(time)
    lr_wasted_time(waster*1000)

      4.浪费时间

    lr_wasted_time()获取浪费时间 是单位毫秒 milliseconds  与 秒之间1000

    
    

       5. 添加集合点

    lr_rendezvous("集合点")  //添加集合点
    

      

        
    
    
  • 相关阅读:
    zabbix迁移思路
    top命令
    random随机数
    判断传入元素是否可见
    title_contains
    1.Selenium的工作原理以及网页上查找元素
    APP升级测试
    英语词汇
    作文 |素材笔记
    408计组 |二、数据的表示和运算
  • 原文地址:https://www.cnblogs.com/tsgxj/p/11002106.html
Copyright © 2011-2022 走看看