• 軟件測試技術
  • 軟件測試博客
  • 軟件測試視頻
  • 開源軟件測試技術
  • 軟件測試論壇
  • 軟件測試沙龍
  • 軟件測試資料下載
  • 軟件測試雜志
  • 軟件測試人才招聘
    暫時沒有公告

字號: | 推薦給好友 上一篇 | 下一篇

LoadRunner中HTTP協議的錄制及模式

發布: 2009-5-15 16:47 | 作者: 不詳 | 來源: 測試時代采編 | 查看: 418次 | 進入軟件測試論壇討論

領測軟件測試網

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 內容多,可伸縮性強,記錄了更詳細的用戶操作信息。

  2,HTML 高級選項:

  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);

  web_submit_data("login.pl",

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

  "Method=POST",

  "TargetFrame=",

  "RecContentType=text/html",

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

  "Snapshot=t5.inf",

  "Mode=HTML",

  ITEMDATA,

  "Name=userSession", "Value=97276.9197245848fAADziVpffiDDDDDDAAccpAiQDf", ENDITEM,

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

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

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

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

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

  LAST);

  return 0;

  }

3,錄制header

  默認設置是不錄制,選擇需要錄制的Headers,以便服務器能夠正確處理編碼信息。需要注意的是“accept-language”,像websphere這類服務器會根據HTTP 請求中的Header來確定編碼。

延伸閱讀

文章來源于領測軟件測試網 http://www.anti-gravitydesign.com/

TAG: http HTTP Http loadrunner LoadRunner Loadrunner loadRunner 錄制 模式 協議


關于領測軟件測試網 | 領測軟件測試網合作伙伴 | 廣告服務 | 投稿指南 | 聯系我們 | 網站地圖 | 友情鏈接
版權所有(C) 2003-2010 TestAge(領測軟件測試網)|領測國際科技(北京)有限公司|軟件測試工程師培訓網 All Rights Reserved
北京市海淀區中關村南大街9號北京理工科技大廈1402室 京ICP備10010545號-5
技術支持和業務聯系:info@testage.com.cn 電話:010-51297073

軟件測試 | 領測國際ISTQBISTQB官網TMMiTMMi認證國際軟件測試工程師認證領測軟件測試網

国产97人人超碰caoprom_尤物国产在线一区手机播放_精品国产一区二区三_色天使久久综合给合久久97