Sometime application does not accept the duplicate data records. In this case if you run same test script with fixed set of input data, application may throw an error due to data duplication. To avoid this issue, QTP provide ways to accept different test inputs to the test script. This process of providing different input values through external parameters is called as parameterization
Types of parameterization in QTP
The variable value can be or the parameter types can be:
- Data Table parameters
- Test/Action parameters
- Environment variable parameters
- Random number parameters
Parameterization in QTP
Say you are trying to write a program that checks the login values for a couple of users on gmail.com.The following is the code that you have for one user but you want the same to take different values each time. How do you do this?
Code to sign in to gmail for one user:
1
2
3
4
5
6
| Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).Sync Browser( "Gmail: Email from Google" ).Page( "Gmail: Email from Google" ).WebEdit( "Email" ). Set "swatiseela" Browser( "Gmail: Email from Google" ).Page( "Gmail: Email from Google" ).WebEdit( "Passwd" ).SetSecure "sfgs686898" Browser( "Gmail: Email from Google" ).Page( "Gmail: Email from Google" ).WebButton( "Sign in" ).Click Browser( "Gmail: Email from Google" ).Page( "Gmail - Inbox" ).Link( "Sign out" ).Click |
Typical screen that comes up when you are trying to parameterize:
As you can see, the value can either be a constant, “swatiseela” in this case, the login ID.
Or if you choose the parameterize option then the corresponding fields in the screen get activated.
From this screen you can choose to parameterize the chosen value with either a value from the data table, environment variable or a random number. Since the most often used source is the datatable we will discuss that first.
Apart from these, you could use the input and output values of a certain action as a parameter for a value. We will discuss that too in a while.
Parameterization in QTP using Datatable with Example
Parameterization in QTP using ExcelI checked the parameter value ON and then the there is a location in Datatable field following the name.
Name: The corresponding column name in the data table from where the data needs to be taken. By default QTP will suggest a name. You have an option to keep it as suggested or change it as needed.
Global Sheet: This sheet of data is available to all the actions in a test.
Current action sheet or local sheet: as the name suggests, it is the sheet of data that is available to a certain action.
I am going to multiple rows of data to the Global data sheet. This is where the password encoder tool comes in handy. You can put in encrypted values in your data sheet that you get from this tool.
This is how my data sheet looks like:
After parameterization this is how the code looks like:
1
2
3
4
5
6
7
8
| Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).Sync Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebEdit( "Email" ). Set DataTable( "SignInName" , dtGlobalSheet) Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebEdit( "Passwd" ).SetSecure DataTable( "GPassword" , dtGlobalSheet) Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebButton( "Sign in" ).Click Browser( "Gmail: Email from Google" ).Page( "Gmail - Inbox" ).Link( "Sign out" ).Click Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).Sync Browser( "Gmail: Email from Google" ).Close |
This code will run for all the 4 rows of data in the global sheet if in the following screen I set the option “Run on all rows” ON:
1
2
3
4
5
6
7
8
9
10
11
12
13
| for i=1 to datatable.GetRowCount Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).Sync datatable.SetCurrentRow(i) varName=datatable.value( "SignInName" ) varPwd=datatable.Value( "GPassword" ) Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebEdit( "Email" ). Set varName Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebEdit( "Passwd" ).SetSecure varPwd Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebButton( "Sign in" ).Click Browser( "Gmail: Email from Google" ).Page( "Gmail - Inbox" ).Link( "Sign out" ).Click Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).Sync Browser( "Gmail: Email from Google" ).Close next |
I would like to spend some time on examining the code and trying to understand why each line and its order is important for the successful execution of the test:
- Why am I opening the browser within the ‘for’ loop?
- Why are there sync statements everywhere?
- Why are we programmatically closing the browser at the end instead of letting the “Record and run settings – Close the browser when test closes” option take care of that for us?
- Again, why is the close statement inside the ‘for’ loop?
State of your AUT:
The basic rule is – Each iteration should begin with the AUT being the same state and ending in the same state.
- If the statement to open the gmail.com page was outside the for loop, the test would run fine for the first iteration but for the next one the gmail.com page would not have been opened and the test would fail.
- If the statement to close the browser is not included in the test, then the test would open a browser with each iteration and you would end up with having as many instances of the browser open as the number of rows in the datatable.
- Imagine if the close statement was outside the for loop, then also you will end up with too many browsers.
- Sync statement: this forces the QTP test to wait until a certain page loads up completely before it starts performing a certain operation on it.
The following is the piece of code when you are using a local sheet instead of the global:
1
2
3
| Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebEdit( "Email" ). Set DataTable( "Name" , dtLocalSheet) Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebEdit( "Passwd" ).SetSecure DataTable( "Pwd" , dtLocalSheet) Browser( "Gmail: Email from Google" ).page( "Gmail: Email from Google" ).WebButton( "Sign in" ).Click |
- Checkpoints.
- Object properties for a selected step.
- Operation arguments defined for a selected step.
- One or more properties of an object stored in the local object repository in the Object Properties dialog box or Object Repository window.
No comments:
Post a Comment