QA Forums
Welcome on the QA Forums.

To take full advantage of everything offered by our software testing & Quality forums, please log in if you are already a member or join our community if you're not yet.... Smile


Join the forum, it's quick and easy

QA Forums
Welcome on the QA Forums.

To take full advantage of everything offered by our software testing & Quality forums, please log in if you are already a member or join our community if you're not yet.... Smile
QA Forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Who is online?
In total there are 4 users online :: 0 Registered, 0 Hidden and 4 Guests

None

[ View the whole list ]


Most users ever online was 36 on Wed Jan 10, 2018 12:25 am
April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar


What is Descriptive programming in QTP

3 posters

Go down

What is Descriptive programming in QTP Empty What is Descriptive programming in QTP

Post  Pogo Thu Oct 07, 2010 11:17 pm

What is Descriptive programming in QTP

Regards,
P

Pogo

Posts : 11
Reward Points : 23
Join date : 2010-09-13

Back to top Go down

What is Descriptive programming in QTP Empty Re: What is Descriptive programming in QTP

Post  puneet Thu Oct 07, 2010 11:18 pm

When using Descriptive programming, we’re bypassing the native object repository mechanism, which may have many advantages, but is extremely not flexible. We’ll examine situations in which the OR’s advantages are outweighed by the DP’s flexibility.

In order to fully grasp how DP actually works, it’s best to first understand how QTP’s native OR works. The native OR is not some complex and deep mechanism, but rather a simple way of keeping groups of properties and values. To clarify: Whenever we add a certain window to the OR, QTP gathers the window’s properties (e.g. – Height="400?, Title="New Entity", vbName="NewEntityID"), and stores them as a group of property-value pairs. When QTP runs the script, it compares these properties and values to the "physical" objects, and finds (or fails to find) the object which they describe. Nothing mystical about it.


In DP, we’re "manually" specifying the properties and values by which the relevant object will be identified. This way QTP won’t search for the properties data in the OR, but will take it from the DP statement. This can be done in a fast, ad-hoc way, in the very line of the command we want to execute:

The syntax is: Class(PROPERTIESSTRINGS).Command, where PROPERTIESSTRINGS specifies the properties and values for the object’s identification. For example:

VBWindow("property1:=value1?, "property2:=value2?).Click

We can even create an object hierarchy:

VBWindow("property1:=value1?).VBCheckBox("property2:=value2?).Click

Of course "VBWindow" class is just an example for DP with VB objects. DP can be done with SWFWindow, Browser, WinComboBox etc.

The only difference between using DP to using the native QTP OR, is in the content within the class’s brackets (in this example: VBWindow()). When using the native OR, we’ll put the logical name of the object as defined in the OR. When using DP, we’ll put strings describing the properties and values the object will be identified by (structured as "property:=value").

This syntax has the benefit of being shot and quick, but may cause problems if we’ll use the object again somewhere else. In this case we’ll have to rewrite the all the description strings, making the code less readable, and harder to maintain (i.e., if one of the properties were to change, we’ll be forced to make several repairs in different places throughout the code). Luckily, DP allows us to define a static descriptive object, and set its properties once. This way, the script simply refers to the descriptive object.

Well, you might ask yourself why we even bother. QTP’s native OR does all these things, is tidier, and up to QTP 9, was the only way to enjoy the benefits of code auto-complete. Well, in some sense, you’re right – sometimes, the best way to go is to use the OR, straight up. However, in some cases, DP is preferable by far, and sometimes even the only way to go:

Easy-breezy coding: if we’re only going to use an object once or twice, there’s no need to use the slow, complex OR, when you can just immediately write the ID string as part of the command. Moreover, with DP you can copy code-snippets between scripts, without having to worry about references to undefined object in the new script.

Inherent dealing with double objects: in case the identification properties and values match more than one object, QTP will through an "object’s description matches more than one of the objects currently displayed in your application" error. If we’re using the native OR, there no easy way to deal with the situation (we could use a complex Recovery Scenario, but it gets very ugly, very soon). However, DP easily deals with double objects by using the index property. We can add "index:=X" to the description strings (when X is a zero-based counter), and QTP will point to object #X.

Object reference in external functions: when using external functions, you can never count on the relevant object being defined in the calling action’s OR. And even if the object is defined there, its logical name might be different, so really, DP remains the only option.

Objects that change hierarchies: sometime an object will appear under a different parent each time (e.g. – a pop-up which appears under the initiating sub-window). In some applications, the only way to work with such objects is with DP.

Working with a collection of objects: other reasons aside, this is the "Killer Feature" of DP. It makes DP a must for every QTP programmer, and it’s hard to overstate its importance and inherent possibilities. According to this concept, instead of working with a single object at a time, we can gather all the objects which answer to our identification properties, and work with them as a collection, serially.

This will be clarified via an example: we’re dealing with an unknown number of checkboxes. We don’t know (and don’t care) how they’re called, or where they are on the screen – we just need to mark all of them as checked. If we were to do this "the old way", we would have to keep track of each checkbox’s properties, and write separate commands that identify each of them, and marks them. With the new objects-collection method, we can ask for all the checkboxes in the screen, loop through them, and mark all of them with a single, easily maintainable command.

This method represents a major improvement, since we’ve severely reduced our dependence in the application. If the number of checkboxes, their locations, or their names were to change, our code will need zero-maintenance to keep on working. Moreover, in some situations, this method is really the only possible way to go.

This method is implemented with the .ChildObjects command. It receives a DP descriptive object, and returns a collection of the objects that answer to the description. The description can have 0 properties, in which case all the objects will be returned.

As you may have noticed, the .ChildObjects command must be executed on a top-level window. This means that you can’t get a collection of the top-level windows of an app, only a collection of child-objects In a certain top-level window. This was true until QTP 9, which introduced the Desktop utility object. This allows us to execute Desktop.ChildObjects(oDesc), which returns a collection of top-level windows, so all is well.

puneet

Posts : 21
Reward Points : 41
Join date : 2010-08-22

Back to top Go down

What is Descriptive programming in QTP Empty Re: What is Descriptive programming in QTP

Post  Pogo Thu Oct 07, 2010 11:19 pm

Thanks .

Can I get a Sample code for one of the Web Application using Descriptive programming .

Thanks in advance .

Pogo

Posts : 11
Reward Points : 23
Join date : 2010-09-13

Back to top Go down

What is Descriptive programming in QTP Empty Re: What is Descriptive programming in QTP

Post  puneet Thu Oct 07, 2010 11:20 pm

Following script refers to the descriptive object

====================================
‘—-Create Object—-’
Dim oDesc
Set oDesc = Description.Create‘
—-Set ID properties & values—’
oDesc("property1?).Value = "value1?
oDesc("property2?).Value = "value2?
‘—-Use and reuse the description object—’
VBWindow(oDesc).Type "Something"
VBWindow(oDesc).Close
‘—-Release description object—’
Set oDesc = Nothing
====================================


The following example demonstrates the .ChildObjects command syntax, as well as a pretty standard way to utilize the returned collection:

====================================
Dim oDesc
Dim oChildren
Dim i
oDesc = Description.Create
oDesc("micclass").Value = "VbCheckBox"
‘—-We could’ve left the oDesc object blank, To get all objects—-’
Set oChildren = VBWindow("Main").ChildObjects(oDesc)
‘—-Now oChildren holds the checkboxs’ collection—-’
‘—-Run through the collection—-’
For I = 0 to oChildren.Count-1‘—-Set the specific Checkbox to "ON"—-’
oChildren(i).Set "ON"
Next
====================================

puneet

Posts : 21
Reward Points : 41
Join date : 2010-08-22

Back to top Go down

What is Descriptive programming in QTP Empty Descriptive Programming

Post  sivan Fri Sep 21, 2012 2:05 am

hi
what is descriptive programming?
entering/providing objects information directly into the test script is called descriptive programming.
u just go and visit this below link..u wil find more information
gcreddy.com

sivan

Posts : 5
Reward Points : 5
Join date : 2012-09-21

Back to top Go down

What is Descriptive programming in QTP Empty Re: What is Descriptive programming in QTP

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum