Answer Posted / ramesh kulkarni
QTP default add ins qte:
Activex
Visual Basic
Web
for QTP Documents & Scripts visit
www.gcreddy.com
I have got job by practicing scripting from that site
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
Hai anyone please "Explain about Framework in QTP?"
Step 3&4 are repeated until an the object in recognised uniquely.
What are metrics and matrix?
When and why to use descriptive programming?
Is it possible to split an action? How?
How can you handle exceptions in qtp?
I want to capture data(using keyword) from msdos application using QTP?... Below is little work i could do on it... /* Set app=CreateObject("Wscript.shell") SystemUtil.run ("C:\Users\Agent\Desktop\pumpsim\PUMPSIM.EXE") Window(“PUMPSIM.EXE”).Activate wait(3) app.sendkeys "N" */ Thanks in advance...!!!
What is an object repository?
Explain the difference between call to action and copy action?
Explain how Does Run time data (Parameterization) is handled in QTP?
Does quicktest professional (qtp) is unicode compatible?
What are the differences between quicktest professional and winrunner?
How to save your test using quicktest professional (qtp)?
What is the Command used to start the QTP
I need to obtain the parent of an object programatically, so if I have: winButton("aButton") I need to obtain the parent part: window("Window1").Dialog("Dialog1") so I can programatically create a string of the full name of the object to call it with an execute statement in QTP I would like to use something like: part[1] = "window(""Window1"")" part[2] = "dialog(""Dialog1"")" so I can do: exeLine = part[1]&"."&part[2]&"."&"winButton(""aButton"")" Execute exeLine Apart from keeping a record of the window/dialog hierarchy is there a parent or path function/ command Thanks Adrian