Introduction:
Descriptive Programming:
This document demonstrates
the usage of Descriptive programming in QTP 8.20. It also discusses situations
where Descriptive programming can be used. Using Descriptive Programming
automation scripts can be created even if the application has not been
developed.
Whenever QTP records any
action on any object of an application, it adds some description on how to
recognize that object to a repository of objects called object repository. QTP
cannot take action on an object until unless its object description is in the
Object Repository. But descriptive programming provides a way to perform action
on objects which are not in Object repository
Object Identification:
To identify an object
during the play back of the scripts QTP stores some properties which helps QTP
to uniquely identify the object on a page. Below screen shots shows an example
Object repository:
Now to recognize a radio
button on a page QTP had added 2 properties the name of the radio button and
the html tag for it. The name the left tree view is the logical name given by
QTP for the object. This can be changed as per the convenience of the person
writing the test case. QTP only allows UNIQUE logical name under same level of
hierarchy. As we see in the snapshot the two objects in Browser->Page node
are “WebTable” and “testPath”, they cannot have the same logical name. But an
object under some other node can have the same name. Now with the current
repository that we have, we can only write operation on objects which are in
the repository. Some of the example operations are given below
Browser("Browser").Page("Page").WebRadioGroup
("testPath").Select "2"
cellData =
Browser("Browser").Page("Page").WebTable
("WebTable").GetCellData (1,1)
Browser("Example2").Page("Page").WebEdit("testPath").Set
"Test text"
When and Why to use
Descriptive programming?
Below are some of the
situations when Descriptive Programming can be considered useful:
- The objects in the application are dynamic in
nature and need special handling to identify the object. The best example would
be of clicking a link which changes according to the user of the application,
Ex. “Logout <<UserName>>”.
- When object repository is getting huge due to
the no. of objects being added. If the size of Object repository increases too
much then it decreases the performance of QTP while recognizing a object.
- When you don’t want to use object repository at
all. Well the first question would be why not Object repository? Consider the
following scenario which would help understand why not Object repository
- Scenario
1: Suppose we have a web application that has not been developed yet. Now QTP
for recording the script and adding the objects to repository needs the
application to be up, that would mean waiting for the application to be
deployed before we can start of with making QTP scripts. But if we know the
descriptions of the objects that will be created then we can still start off with
the script writing for testing
- Scenario
2: Suppose an application has 3 navigation buttons on each and every page. Let
the buttons be “Cancel”, “Back” and “Next”. Now recording action on these
buttons would add 3 objects per page in the repository. For a 10 page flow this
would mean 30 objects which could have been represented just by using 3
objects. So instead of adding these 30 objects to the repository we can just
write 3 descriptions for the object and use it on any page.
Modification to a test case is needed but the
Object repository for the same is Read only or in shared mode i.e. changes may
affect other scripts as well.
When you want to take action on similar type of
object i.e. suppose we have 20 textboxes on the page and there names are in the
form txt_1, txt_2, txt_3 and so on. Now adding all 20 the Object repository
would not be a good programming approach.
- The objects in the application are dynamic in nature and need special handling to identify the object. The best example would be of clicking a link which changes according to the user of the application, Ex. “Logout <<UserName>>”.
- When object repository is getting huge due to the no. of objects being added. If the size of Object repository increases too much then it decreases the performance of QTP while recognizing a object.
- When you don’t want to use object repository at all. Well the first question would be why not Object repository? Consider the following scenario which would help understand why not Object repository
- Scenario 1: Suppose we have a web application that has not been developed yet. Now QTP for recording the script and adding the objects to repository needs the application to be up, that would mean waiting for the application to be deployed before we can start of with making QTP scripts. But if we know the descriptions of the objects that will be created then we can still start off with the script writing for testing
- Scenario 2: Suppose an application has 3 navigation buttons on each and every page. Let the buttons be “Cancel”, “Back” and “Next”. Now recording action on these buttons would add 3 objects per page in the repository. For a 10 page flow this would mean 30 objects which could have been represented just by using 3 objects. So instead of adding these 30 objects to the repository we can just write 3 descriptions for the object and use it on any page.
0 comments:
Post a Comment