This is the tutorial #2 in our QTP Training article series.
=> Click Here For The QTP Training Tutorials Series
This article is going to give you an insight into the Keyword view of the QTP GUI. During this process, we are going to get a quick introduction to Actions, Object Hierarchy, and the basic columns in the keyword view.
Let’s start.
Table of Contents:
Introduction to QTP Keyword View
There is a drop-down box at the top and it shows “Action 1”.
What does this mean?
Introduction to Actions: Tests in QTP are recorded in terms of actions. The action is nothing but a set of statements performing a sequence of actions. Most often an action is simply a logical unit of modularity. The calls to one or more actions can be defined as a QTP test.
For Example, Let’s assume that in an online web-based email system, the user needs to login, compose and send an email and then logout, it is recommended that each of these operations is divided into 3 different actions although all of them can be written under one action.
‘Test Email’ will have:
Action1 | >Login |
Action2 | >Compose and send email |
Action 3 | >Logout |
The test is essential:
Call to Action1; Call to Action 2; Call to Action 3
If written in one action, the lines of the script would be large and difficult to manipulate and maintain. So the logical division is recommended. Also, as we move on further in our exploration of Actions we are going to understand how actions can be parameterized thereby enabling easy repetition of a certain action as many times as desired.
So when you create a new QTP test, it contains a call to one action, “Action 1”.
When we expand the drop-down, it shows Test Flow. For a test with multiple actions, it shows the sequence in which each action is called, thereby making the name, “Test Flow” self-explanatory. This drop-down not only displays the sequence of actions, but it also provides the option for the user to select or go-to a particular action to view and/or Edit.
There is also a “Reusable Actions” Folder view. For now, let’s just say that reusable actions can be used by multiple tests and multiple times in the same test where it was created. We will discuss in detail on how that can be achieved. Every action by default is reusable. This can be changed if need be.
Let’s take a little diversion here and talk a little bit about the Object recognition hierarchy in QTP.
Object Hierarchy: If you have noticed in our example, the Agent Name and Password are displayed under the item Login. A point to note here is that QTP uses a tree hierarchy to store objects.
In our case, the Agent Name and Password are the child objects to the container object Login which is the Dialog. Container objects are the window, dialogue box in windows based environments and web pages in a web-based environment.
This is an example of the login Dialog of the flight’s application:
The container here is the Login dialog and the next level objects are Agent name, Password and the other buttons and images in the dialog. There are only 2 levels here. But there could be more levels, like browser.page.button – in this case, a browser is a container for page and page is a container for the button.
Working with Keyword View
I am going to use the test we recorded in the previous article. Open the flight’s application. Enter the Agent Name and Password on the Login Page and Click on OK.
I am also going to add some function calls and statements programmatically from Expert view and show you how they appear under the tabular form in the Keyword view.
This is the code I put in the expert view:
Dialog("Login").WinEdit("Agent Name:").Set "swati" Dialog("Login").WinEdit("Password:").SetSecure "5112fd3c42beb7a58069b67cfdd9b7e7ad1fc69c" Dialog("Login").WinButton("OK").Click msgbox "text" If x=0 Then msgbox "text 2" End If Window("Flight Reservation").ActiveX("MaskEdBox").Type "010312" Window("Flight Reservation").WinComboBox("Fly From:").Select "Denver" Window("Flight Reservation").WinComboBox("Fly To:").Select "Frankfurt"
Lines 1 through 3 are the login operations. Line 4 is a function call to message box display operation. I added a dummy if statement just to show you how it appears in the keyword view. X is a dummy value as well.
Since we are not going to run this test, let’s just use it theoretically. Lines 8 through 10 are entering the date of flight in the to and from locations. This is used to understand how objects are grouped.
This code appears as follows in the Keyword view: [click on any image for an enlarged view]
As you can see there are 4 columns – Item, Operation, Value, and Documentation. The table can be expanded or collapsed by clicking on the little arrow next to the action name.
Item: Each step is a sequence of events performed on an item. The items can be any of the following:
- Test object (For Example, Agent Name Edit box).
- Utility Object: These are some objects reserved by QTP to be used in tests. For example, the DataTable object. More coming up on this later.
- Statement: Any VB Script programmatic statements or even comments.
- Function call: like ‘msgbox’ call in our program
Operation: It shows the operation that is performed on the item. When this column is clicked for a particular item, it lists all the available operations that can be performed on the object.
Value: This column can be considered as the argument of a statement displayed. In our example, the message box function call has a value “Text”. There can be multiple arguments for one statement in which case this column will be divided accordingly.
Documentation: A read-only column that translates a statement into easily understandable comments.
There are two other columns Assignment and Comment that can be added to the Keyword view table. To do so, the option to select is Tools ->View Options and choose the required columns from the list displayed.
Assignment: This column is not very widely used and what this does is, it assigns a value to or gets a value from a variable.
Comments: The tester can write anything under this column. It will be treated as comments in the expert view.
Conclusion
Well, that sums up an interesting insight into the basic capabilities of the QTP keyword view. Actions are logical units of separation in a test. The test is, therefore, a series of function calls. When a new test is created it contains one call to action.
By default, all actions are reusable. QTP follows a multi-level hierarchy to recognize objects. An object that contains the next level of objects is called a container. There can be more than one level of containers in a test.
In our next article, we will talk about how we can use this view to Insert Steps. Modify them, Insert checkpoints, Breakpoints and how we can manage actions.
=> Visit Here For The QTP Training Tutorials Series
This is the second post in our QTP training series started with the help of QTP expert Swati Seela. We have started this training series for those who want to learn QTP from scratch.
These tutorials are designed for beginners as well as advanced QTP testers. Join our email newsletter or RSS feed if you don’t want to miss a single article in this series. We hope this will be the most comprehensive QTP online training for everyone.
As always, help us spread the word about this valuable testing resource with your friends by sharing it on social sites. Ask your questions on this topic in the comments below.
If you have read this so far, you should probably follow us on Twitter: Follow @VijayShinde
Thanks a lot Swati !
When we start recording and whatever we are doing its recorded e.g. login window activte, agent name
Can we write the script to invoke these application without its done by system?
i hope u got my pont
Hi swathi and Vijay, i have small query in QTP11.5 version.
Where i can see the tab on the screen. I got the Keyword view but not expert view. Thanks
good information about qtp,really advantage for beginers
Hi Swati it is very nice article …. I am beginer for QTP… keep posting like this …
This is a best article for the beginner of the software testing of qtp…
I like it… :p
I am not able to find the flight application that comes with the UFT . Where should i look for it.
whats difference between keyword view and expert view?
After read all these articles i feel like wasted money and time by doing courses in training centers. They only teaching IDE and very basics..Here i have learned more than what i learnt there. Thanks for these excellent tutorials.
Hi,
Thanks for the valuable info on adding Tools>> View Options >> Assignment, Comments.
A little note here.. If you are in Expert View, Tools >> View Options wont display the desired Assignment, Comments. You have to switch to Keyword View to look for Keyword View specific options.
Excellent training tutorial! Thanks so much for your hard work putting this training together for beginners like me to learn QTP on my own.
Where can I find the flight sample I cant seem to locate it. I just installed the QTP 11 version.Please assist.
I am B.com graduate. Want to get into the IT field. Want to learn QA testing and its tools. This is one of the best explained and described website , thank you very much for uploading. Pls guide me how to get started wih the QA testing .. what I should know , since my education background is comerce. what are the best tools I should be knowing pls guide me.
thank you,
very nice..
Hi Vijay,
QTP tutorial is very usefull,Thanks for posting .I have some interview questions ,i would like to ask now.
1.If there are more than 1000 defects in an application.The timing provided for this application testing is just one week,so how will you perform?
2.How will you write a test cases for a page ,in which say 8 to 9 fields or objects are there?
These are my questions vijay.can you reply
Regards
Renuka
nice…..
Anyone want to share downloaded QTP 10 or 11 or a link for them appreciated.
Hi,
Thanks for your training materials , I am a beginner and this has been a great help . Thank you .
@Kalyan: Thanks Kalyan for the pointers. Yes, the advanced topics are coming up!
@Archana, Please navigate to Flight application through Start> All Programs> QTP >Sample Applications>Flight
THanks for the information…i am a fresher in QTP.
One doubt whether we can use checkpoints for web application?
Thank you Swathi
Superb Explanation…!
Thanks
Hi,
Thanks for the training. Could you explain qtp automation testing with vb script or some other scripting languages. Everywhere people are asking for scripting experience.
I’ve installed QTP, I initaited Record and tried capturing starting from Entering the credentials in the Login Window and booked a ticket in the Flight Window. When checked for the Keyword view and Expert View all I see that it has only captured the “Flight From” and “Fly To” data.
Could you advise why it has not recorded other objects data?
How to take the test item into the QTP,? Is there any option to load the AUT into the QTP? because you have explained only the initial settings for starting the QTP page and you have not explained how to take the test item into QTP? Please explain this also.
great…….
Hi swati and vijay,
QTP tutorial is really good. please could any provide similar kind of tutorial for sahi or selenium ?
Regards,
Swetha
hey thanks again for this nice article. this is really helpful for me. i wasn’t sure how to start on learning qtp but you showed us the direction
Does SQL has any thing to do with QTP?
Thank you very much for the tutorial. I downloaded QTP software but am not seeing sample flight application. Should I download it separately?
hi
Is it possible to work in QTP without the knowledge of VB Script?
Great going. Everything is very friendly for the Beginners as well as Intermediates. Thank you. Keep it going.
@Ganesh: I would recommend at least a beginner level VB knowledge. The good news, it is not very difficult to learn.
@Uma shankar: please let me know the problem you had while downloading or installing QTP Trial on your machine. I will be able to help you better if I know more information about the issue you are having.
Hi Swathi and Vijay, Excellent training tutorial! Thanks so much for your hard work putting this training together for beginners like me to learn QTP on my own.
Hi,
Thanks for such good article.. much helpful for beginners
@kapil: Keyword and Expert views are basically different representations for your QTP test steps (the test basically has the operations that you would want to be performed on the AUT). Each view brings its own capabilities that a tester can use to his advantage. I hope this answers your answer.
Hi Swathi,
I hope in coming articles you will further clarify the use of Function Libraries against the use of reusable Actions. That time please give a suitable example on when is Reusable Action is recommended over function libraries. (since using more actions in a Test causing the system performance). Forgive me if it sounds more advanced at this level.
Thanks Swati,
This is really a systematic way of learning QTP, however if possible let me know how to download QTP, as I tried to download it from path given in first edition, but could nt succeed, is there any other way.
Kindly explain
Thanks
umashankar
Thankyou, its very useful, hope u r giveing more information relatted to interview and getting job.
thanks
@Anurag: Are you talking about starting the application programatically instead of using the options in the record and run settings? Yes, we can.
SystemUtil.run, InvokeApplication are some of the ways
@Su: VBSCripting tutorial is in the pipeline. It takes some familiarity of the tool for you to begin programming effectively. So pls keep an eye out for the coming articles and scripting is surely going to be there.
hi,
I have a problem. I have setupped QTP.It can use before, But now it cannot identify objects,why?
Can you help me?
what is lowest level of test hierarchy in keyword view?
@Asha: You can open your AUT in parallel and QTP can act and run on it. Or you can use QTP itself to launch your AUT.
Hi Swati,
Thanks for your excellent Traing Tutorial, But if you will give some more example, then this would be thorough about that.
Thanks,
Chandan
Hi Swati & Vijay , I got some queries about If….Then statement to use in QTP . While doing some handson i found i was unbale to set correct scripts to execute the Test. Hence i approached you through this Comment. Please revert me soon.