what is the extension for QTP files?
Answer Posted / kiran
please check before posting information properly, as i can
find many errors
| Is This Answer Correct ? | 7 Yes | 4 No |
Post New Answer View All Answers
When to use descriptive programming?
What are the different ways to invoke an application using QTP?
Write the code for,In the page screen we have total 10 Links,out of these I have to click 9th link
what is stepin & stepout?
what frame work you are following?
.have you ever written compiled module? if yes , tell me about some of the function that you wrote.
Tell me one scenario, the complex functionality you have automated in your project?
How to get the particular property value?
What is the expert view?
Can I change properties of a test object?
How is the Bitmap checkpoint different from Image checkpoint?
Is there any pdf or online book for QTP Scripting? Let me know more about QTP Scripting.
Describe the differences between functions and actions in UFT?
what is defenetion of kiran can u tell me plz CVS, SVN
I am facing an issue of object identification with the dropdown element of DHTML grid. When I tried to recognize these different dropdown objects, QTP identifies only one object for all the dropdowns. Hence, selection of different data from different dropdowns list is an issue. To overcome this problem, i have used Descriptive Programming technique by creating different object descriptions which have all the other properties same but differ only in one property i.e. ‘X’ location of the element on the screen. Hence, i have created distinct object descriptions that would allow us to select values in different dropdowns. The code is given below. But still I am unable to identify distinct dropdown objects. ‘Object Description for Dropdown Cell Status Set objCellStatus = Description.Create objCellStatus("micclass").value = "WebList" objCellStatus("name").value = "select" objCellStatus("x").value = 219 ------ ‘X’ Axis value for cell status drop down ‘Object Description for Dropdown Sub Segment Set objSubSegment = Description.Create objSubSegment("micclass").value = "WebList" objSubSegment("name").value = "select" objSubSegment("x").value = "319" ------ ‘X’ Axis value for sub segment drop down Please help... This is specific to DTML grid(Drop down object)