`
liyiye
  • 浏览: 424403 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

LoadRunner中HTTP协议的录制及两种录制模式的比较

阅读更多

一,脚本编写

1,  HTML –base scrīpt”和“URL-base scrīpt”的区别

1)“HTML –base scrīpt”默认模式,为每个用户请求生成单独的函数

如:

Action()

{

web_url("WebTours",

        "URL=http://127.0.0.1:1080/WebTours/",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=",

        "Snapshot=t4.inf",

        "Mode=HTML",

        LAST);

       web_submit_form("login.pl",

        "Snapshot=t5.inf",

        ITEMDATA,

        "Name=username", "Value=jojo", ENDITEM,

        "Name=password", "Value=bean", ENDITEM,

        "Name=login.x", "Value=53", ENDITEM,

        "Name=login.y", "Value=13", ENDITEM,

        LAST);

return 0;

}

2)“URL-base scrīpt”可以捕获所有作为用户操作的结果发送到服务器的HTTP请求,然后一一记录下来。可以捕获非HTML应用程序,例如小程序和非浏览器应用程序。

如:

Action()

{

 

web_url("WebTours",

        "URL=http://127.0.0.1:1080/WebTours/",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=",

        "Snapshot=t1.inf",

        "Mode=HTTP",

        LAST);

 

web_concurrent_start(NULL);

 

web_url("header.html",

        "URL=http://127.0.0.1:1080/WebTours/header.html",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/",

        "Snapshot=t2.inf",

        "Mode=HTTP",

        LAST);

 

web_url("welcome.pl",

        "URL=http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/",

        "Snapshot=t5.inf",

        "Mode=HTTP",

        LAST);

 

web_concurrent_end(NULL);

 

web_concurrent_start(NULL);

 

web_url("hp_logo.png",

        "URL=http://127.0.0.1:1080/WebTours/images/hp_logo.png",

        "Resource=1",

        "RecContentType=image/png",

        "Referer=http://127.0.0.1:1080/WebTours/header.html",

        "Snapshot=t3.inf",

        LAST);

 

web_url("webtours.png",

        "URL=http://127.0.0.1:1080/WebTours/images/webtours.png",

        "Resource=1",

        "RecContentType=image/png",

        "Referer=http://127.0.0.1:1080/WebTours/header.html",

        "Snapshot=t4.inf",

        LAST);

 

web_concurrent_end(NULL);

 

web_concurrent_start(NULL);

 

web_url("home.html",

        "URL=http://127.0.0.1:1080/WebTours/home.html",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true",

        "Snapshot=t6.inf",

        "Mode=HTTP",

        LAST);

 

web_url("nav.pl",

        "URL=http://127.0.0.1:1080/WebTours/nav.pl?in=home",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/welcome.pl?signOff=true",

        "Snapshot=t7.inf",

        "Mode=HTTP",

        LAST);

 

web_concurrent_end(NULL);

 

web_url("mer_login.gif",

        "URL=http://127.0.0.1:1080/WebTours/images/mer_login.gif",

        "Resource=1",

        "RecContentType=image/gif",

        "Referer=http://127.0.0.1:1080/WebTours/nav.pl?in=home",

        "Snapshot=t8.inf",

        LAST);

 

web_submit_data("login.pl",

        "Action=http://127.0.0.1:1080/WebTours/login.pl",

        "Method=POST",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/nav.pl?in=home",

        "Snapshot=t9.inf",

        "Mode=HTTP",

        ITEMDATA,

        "Name=userSession", "Value=97276.8320777643fAADzHHpAfDAAccpAzcD", ENDITEM,

        "Name=username", "Value=jojo", ENDITEM,

        "Name=password", "Value=bean", ENDITEM,

        "Name=JSFormSubmit", "Value=off", ENDITEM,

        "Name=login.x", "Value=56", ENDITEM,

        "Name=login.y", "Value=11", ENDITEM,

        LAST);

 

web_concurrent_start(NULL);

 

web_url("login.pl_2",

        "URL=http://127.0.0.1:1080/WebTours/login.pl?intro=true",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/login.pl",

        "Snapshot=t10.inf",

        "Mode=HTTP",

        LAST);

 

web_url("nav.pl_2",

        "URL=http://127.0.0.1:1080/WebTours/nav.pl?page=menu&in=home",

        "Resource=0",

        "RecContentType=text/html",

        "Referer=http://127.0.0.1:1080/WebTours/login.pl",

        "Snapshot=t11.inf",

        "Mode=HTTP",

        LAST);

 

web_concurrent_end(NULL);

 

web_concurrent_start(NULL);

 

web_url("in_home.gif",

        "URL=http://127.0.0.1:1080/WebTours/images/in_home.gif",

        "Resource=1",

        "RecContentType=image/gif",

        "Referer=http://127.0.0.1:1080/WebTours/nav.pl?page=menu&in=home",

        "Snapshot=t12.inf",

        LAST);

 

web_url("flights.gif",

        "URL=http://127.0.0.1:1080/WebTours/images/flights.gif",

        "Resource=1",

        "RecContentType=image/gif",

        "Referer=http://127.0.0.1:1080/WebTours/nav.pl?page=menu&in=home",

        "Snapshot=t13.inf",

        LAST);

 

web_url("signoff.gif",

        "URL=http://127.0.0.1:1080/WebTours/images/signoff.gif",

        "Resource=1",

        "RecContentType=image/gif",

        "Referer=http://127.0.0.1:1080/WebTours/nav.pl?page=menu&in=home",

        "Snapshot=t14.inf",

        LAST);

 

web_url("itinerary.gif",

        "URL=http://127.0.0.1:1080/WebTours/images/itinerary.gif",

        "Resource=1",

        "RecContentType=image/gif",

        "Referer=http://127.0.0.1:1080/WebTours/nav.pl?page=menu&in=home",

        "Snapshot=t15.inf",

        LAST);

 

web_concurrent_end(NULL);

 

return 0;

}

3)如何选择?什么时候选择url的录制方式:

* 不是基于浏览器的

* 基于浏览器但是包含javascrīpt,并且发送了请求到服务器

* 使用了https 安全协议

4)两种脚本的内容比较:

* http脚本直观,易于理解和维护

* url 内容多,可伸缩性强,记录了更详细的用户操作信息。

2HTML 高级选项:

1)  默认是选择 描述用户行为的脚本

2)  仅包含明确的URL脚本,录制结果如下:

Action()

{

 

     web_url("WebTours",

            "URL=http://127.0.0.1:1080/WebTours/",

            "TargetFrame=",

            "Resource=0",

            "RecContentType=text/html",

            "Referer=",

            "Snapshot=t1.inf",

            "Mode=HTML",

            LAST);

 

 

     web_url("Update.htm",

            "URL=http://scdown.qq.com/download/Update.htm",

            "TargetFrame=",

            "Resource=0",

            "RecContentType=text/html",

            "Referer=",

            "Snapshot=t2.inf",

            "Mode=HTML",

            LAST);

 

     web_url("Update.htm_2",

            "URL=http://scdown.qq.com/download/Update.htm",

            "TargetFrame=",

            "Resource=0",

            "RecContentType=text/html",

            "Referer=",

            "Snapshot=t3.inf",

            "Mode=HTML",

            LAST);

 

     web_url("Update.htm_3",

            "URL=http://scdown.qq.com/download/Update.htm",

            "TargetFrame=",

            "Resource=0",

            "RecContentType=text/html",

            "Referer=",

            "Snapshot=t4.inf",

            "Mode=HTML",

            LAST);

分享到:
评论

相关推荐

    LoadRunner中的录制模式设置.pdf

    《深入解析LoadRunner录制模式设置》 在LoadRunner软件测试工具中,录制模式的设置是构建性能测试脚本的关键步骤之一。本文旨在深入探讨LoadRunner中的录制模式设置,特别是针对Web和PeopleSoft 8应用程序的两种...

    LoadRunner两种录制方式

    在LoadRunner中,录制是创建测试脚本的基础步骤,主要分为HTML和URL两种模式,这两种模式各有特点,适用于不同的应用场景。 **HTML录制模式**: HTML模式是一种基于内容的高级录制方式,它模拟浏览器的行为,根据...

    LoadRunner测试Tuxedo应用的两种方式

    ### LoadRunner测试Tuxedo应用的两种方式 #### 前言 LoadRunner是一款功能强大的性能测试工具,广泛应用于各种应用程序的性能评估之中。对于传统的客户端/服务器(C/S)架构的应用程序,如Tuxedo这类中间件系统,...

    Loadrunner脚本录制常见问题整理.txt

    为了确保每次迭代都能正确录制页面,可以在“Run-time Setting”的“Browser Emulation”中选择“Simulate a new user on each iteration”以及“Clear cache on each iteration”两个选项。这样,在每次迭代开始前...

    loadrunner常见录制问题整理

    LoadRunner提供了两种不同的录制模式:HTML-based script和URL-based script。 - **HTML-based script**:在这种模式下,VuGen会记录每个HTML元素的操作,这种方式更适合于较为复杂的Web应用程序,因为它能够更详细...

    loadrunner 协议详细介绍

    在 LoadRunner 中,测试人员可以通过以下几种方式利用 HTTP 协议进行测试: 1. **录制 HTTP 请求**:使用 LoadRunner 的录制功能捕捉浏览器与服务器之间的 HTTP 交互。 2. **编写 HTTP 脚本**:直接在 LoadRunner ...

    LoadRunner问题解决方案

    1. 脚本乱码:当LoadRunner录制的脚本出现乱码时,可以在结束录制选项(Endit Recording Option)的Advanced设置中,将Support charset改为UTF-8,以解决编码问题。 2. 脚本回放失败:如果录制的脚本在回放时出现问题...

    loadrunner性能测试介绍

    在脚本的录制与开发方面,LoadRunner提供单协议和多协议两种模式。录制Web应用脚本时,通常选择Web(HTTP/HTML)协议。录制工具条用于控制录制过程。录制完成后,用户脚本会自动生成。 性能测试涵盖的方面包括压力...

    性能测试_loadrunner脚本录制的常用函数

    在性能测试中, Loadrunner 是一种常用的性能测试工具,它可以模拟大量用户对系统的访问,模拟各种业务场景,以评估系统的性能和可扩展性。在 Loadrunner 中,脚本录制是性能测试的重要组成部分,它可以自动记录和...

    LoadRunner8.1使用说明

    - LoadRunner Generator 登录 Controller:有两种登录方式,一种是无需用户登录,另一种是手动登录Load Generator机器。 脚本录制和开发过程中,选择正确的协议至关重要。LoadRunner Agent Process 监视各种协议的...

    LoadRunner常见问题整理

    ### LoadRunner常见问题整理 ...接着,使用`lr_message`函数输出当前时间的两种格式:一种是以秒为单位的时间戳形式,另一种是日期时间字符串形式。这样就可以在脚本中准确地记录和显示当前系统时间。

Global site tag (gtag.js) - Google Analytics