当前位置:网站首页>loadrunner script -- parameterization
loadrunner script -- parameterization
2022-08-09 20:29:00 【wangmin】
Tip:
Parameterization
Why are scripts parameterized?One reason is that some values in the script are unique and cannot be repeated. If the same value is used for playback, the playback will fail. For example, if we add an account, the account name must not be repeated; the other reason is toSimulate a real operation scenario. After all, it is impossible for the same user to log in in the production environment, and it is impossible to enter the same parameters during operation.The purpose of parameterization is to simulate the real operation scene as much as possible.
a
Right click Replace with Parameter-Create New Parameter
Two
After clicking, the following input box will pop up
Three
After clicking "OK" above, the following prompt box will pop up.
means if you want to replace that parameter with the same value elsewhere in the script.
Five
After replacement, it will display as follows
Six
After the replacement is completed, select the parameter name, right-click and select Parameter Properties to design the parameter value we want to replace, as shown below

Click Add Row to add a row;
Or click Browse to select a document we have edited and import it directly;
Or click Edit with Notepad to enter the parameter value in the text editor

(1) Sequential: Press from the first lineTake values one by one in order
(2) Random: Each iteration randomly selects a value from all values
(3) Unique: Unique value, the value in the list can only be taken once
Seven
Add a new parameter. When selecting the strategy of the next line, a new option will appear, Same line as productId,
This means that when the script is executed, which line of data is selected by productId, the color will beWhich row of data to select.

Eight
Update value on: update the parameter data under what circumstances
(1) Each iteration: take a value for each iteration.
(2)Each occurrence : Update the value every time the parameter name is encountered.If the parameter name appears twice in an iteration, the two values are different.
(3) Once: The value is only taken at the first iteration, and the first value is used for subsequent iterations.
These two value strategies, different combinations will also produce different value methods, let's combine the above examples to describe in detail what the combination of these strategies will produce.
Sequential+Each iteration: Take the value once in each iteration, take the value in order from the first row, and retake the value from the first row when all the values are taken.We start to take the value from 2019blue-Tshirt01 in the first row. When the value reaches 2019blue-Tshirt04, the next time the value is taken, it will start to cycle from 2019blue-Tshirt01.If the parameter {productId} appears twice in the script, it will take the same value twice.
Sequential+Each occurrence: Values are taken every time a parameter is encountered, starting from the first row in order, and when all values are taken, re-take values from the first row.For example, if {productId} appears twice in the script, the first time it appears, the value is 2019blue-Tshirt01, the second time it appears, the value 2019blue-Tshirt02, and so on.
Sequential+Once: Each iteration takes the first fetched data.The first time I get it is 2019blue-Tshirt01, and all the places where parameters are used and all subsequent iterations are obtained as 2019blue-Tshirt01.
Random+Each iteration: Randomly take a row of values from the list each iteration.In one iteration, a random value of 2019blue-Tshirt01 is taken where the parameter name appears for the first time. If the parameter name is encountered again in this iteration, it will be taken as 2019blue-Tshirt01, and the value will be randomly selected again in the next iteration.
Random+Each occurrence: The value is randomly selected each time a parameter is encountered. In an iteration, a random value 2019blue-Tshirt02 is taken at the place where the parameter name appears for the first time. Then the parameter name is encountered again in the iteration.Just get the value again, it may be 2019blue-Tshirt04.
Random+Once: The first iteration randomly selects a row of values, such as 2019blue-Tshirt03 for the first time, the parameter names encountered in this iteration and each subsequent iteration use the value of the first iteration2019blue-Tshirt03.
Unique+Each iteration: Take a row of values at each iteration, starting from the first row in order.
Unique+Each occurrence: Values are taken every time a parameter is encountered, starting from the first row in order.
Unique+Once: The first iteration takes a row of values, and each subsequent iteration takes the value of the first iteration.
Nine
https://baijiahao.baidu.com/s?id=1699634722539482943&wfr=spider&for=pc
a>边栏推荐
- LeetCode笔记:Biweekly Contest 84
- 安装搭建私有仓库 Harbor
- Entry node of ring in leetcode/linked list
- Logic unauthorized and horizontal and vertical unauthorized payment tampering, verification code bypass, interface
- 苦日子快走开
- 学长告诉我,大厂MySQL都是通过SSH连接的
- 方舟开服务器Vmware虚拟机安装不上?
- 测试开发是什么,为什么现在这么吃香?
- win10 uwp 简单MasterDetail
- 动态RDLC报表(七)
猜你喜欢
随机推荐
Ark Standalone/Administrator Special Item Command Codes
CPU状态信息us,sy,ni,id,wa,hi,si,st含义
C#介绍及基本数据类型
传统数据中台又贵又复杂?何不试一试永久免费的下一代数据中台
动态RDLC报表(二)
史上最全架构师知识图谱
总结篇4:redis 核心数据存储结构及核心业务模型实现应用场景
win10 uwp 手动锁Bitlocker
mysql双主备份失败?
The principle implementation of handwritten flexible.js, I finally understand the multi-terminal adaptation of the mobile terminal
Experience far more than Hue, this is the favorite SQL tool for technicians
EPIC是什么平台?
为什么修补应用程序漏洞并不容易
最新!2022版新员工基础安全知识教育培训PPT,企业拿去直接用
mysql generates random name, mobile number, date
.NET 6 study notes (4) - Solve the Nullable warning in VS2022
win10 uwp 设置启动窗口大小 获取窗口大小
The strongest distributed lock tool: Redisson
How to play with container local storage through open-local? | Dragon Lizard Technology
2022 全球 AI 模型周报









