QTP
IF, Else, End IF, Exists in QTP/UFT with Example
This tutorial demonstrates advanced coding in HP QTP using if and else loop {loadposition video} Video...
If you have segments of code that you need to use several times in your tests, you may want to create a user-defined function. By using user-defined functions, your tests are shorter, and easier to design, read, and maintain
Your own function libraries in Micro Focus UFT can contain VBScript functions, subroutines, modules etc.
You need to follow 3 simple steps to use a function from a library in your test
Step 1) To create a new function library in HP QTP. Select File > New > Function Library. It opens as a new tab in QTP.
Lets a create a very simple function which shows Message Box.
Function Demo MsgBox "This is a Test Function" End Function
So whenever this function is called a message box must be displayed. You can have multiple functions defined in the same file. Let's save the function. A function has an extension .qfl
Step 2) Associate the library with your test. Click File > Settings > Resources > Associate Function Library.Click Add. Select The Function Library File. Click Okay
Step 3) Last step to call the function in your test script
Important Notes
Click here if the video is not accessible
This tutorial demonstrates advanced coding in HP QTP using if and else loop {loadposition video} Video...
What is Action in QTP? Actions help divide your test into "logical units" or "Business Processes". Actions help...
What is Object Identification? QTP also uses a "human" like technology for object identification. During...
Project Summary This Live Project will put you in an Online Corporate Test Environment. You will...
Once the script is recorded, you need to REPLAY the script to ensure the test steps have recorded...
In this tutorial, we will use QTP (HP UFT) to create Data Driven Framework Keyword Driven...