Any one knows about descriptive programming to identify
objects in a page?
Kindly drop me mail
prasanna.sabat@gmail.com
Answers were Sorted based on User's Feedback
Answer / madhusudana
hi friends this is madhusudan
we can achieve D.P in two ways
* static way
* dynamic way
static type means we can directly write the properties and value of the test objects in script.
example script
browser("title:=Ranford home page").page("title:=Ranford home page").exist
like this
dynamic means we have to create the description object to the test objects by fixing the set of properties and values and that description object we can use in script directly.
example
dim br,pg
set Br("propety").value="value"
set pg("property").vlue="value"
Browser(br).page.Exist
these are the two types of D.P
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi .. I am murali from blore..
in my company this way to we write descriptive
programming...
if u have an internet and qtp 8.2 or 9 run the below script
in ur machine..
Browser("title:=Welcome to Gmail").Page("title:=Welcome to
Gmail").WebEdit
("type:=text","name:=Email").Set "prasanna.sabat"
Browser("title:=Welcome to Gmail").Page("title:=Welcome to
Gmail").WebEdit
("type:=password","name:=passwd").set "urpwd"
Browser("title:=Welcome to Gmail").Page("title:=Welcome to
Gmail").WebButton("type:=submit","name:=Sign in").click
did u understand the abvoe code...?
otherwise call to me..
09845135495
bangalore...
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ycy
BY DP
Dim obj_ChkDesc
Set obj_ChkDesc=Description.Create
obj_ChkDesc(?html tag?).value = ?INPUT?
obj_ChkDesc(?type?).value = ?checkbox?
Dim allCheckboxes, singleCheckBox
Set allCheckboxes = Browse(?Browser?).Page
(?Page?).ChildObjects(obj_ChkDesc)
For each singleCheckBox in allCheckboxes
singleCheckBox.Set ?ON?
Next
Go to help section in QTP and see for other objects like
webEdit, webtable, webelement.
| Is This Answer Correct ? | 0 Yes | 1 No |
Can any one please list me out the shortcut keys for some functionalities in the QTP .. for example ..to record...to run...etc
Which scripting language QTP is using?
explian qtp frame work and what is the use of it? what is the neceecity of this? explian detail?
How QTP integrate with application?
How to supress warnings from the "Test results page"?
In a page i have N number of links at a time i would like to open those links by using QTP?how to do that?
How can we disable popup blocker? (I think it means when we get a pop up messge(its error) how we wil disable that one with out interrupting normal process)
How to get all the objects count and objects names in webpage using QTP ?
QTP identified the object but not performing the desired action???what could be the reason?????
What is the extension of the recovery scenario file in qtp?
what is a test strategy & what is the difference between test strategy & test plan?
Is any limitation to xml checkpoints?