Can we check environment variable value without existing of environment variable
Answer Posted / suri
yes
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
There is an excel file of 1 to 100 sheets how you will iterate through it?
Can we run multiple QTP scripts one after the other without manual intervention? How?
If you giving priority as p0, as a developer if I give priority as p2, What happens In user defined function ?
after click on compose mail how can we attached a file in qtp with vbscript code
What is checkpoint in qtp?
what are the utilities and drivers
WHAT IS THE DIFFERENCE BETWEEN QTP SCRIPT AND VB SCRIPT? HOW MUCH PERCENTAGE WE USE IN QTP SCRIPT REAL TIME AND HOW MUCH PERCEN OF VB SCRIPT,,,,,,,
This is a question thats generally asked in every QTP interview. What were the problems that you faced during automation and how did you resolve them?
If I change the property value at runtime is it effect is object repository?
Is the qtp course will help to create a virtual object?
can i change the runtime properties of an object ? How can i check if a parameter exists in database ?
What is the use of ordinal identifier in qtp?
Which features or drawbacks of QTP lead to the upgrade for a newer version?
What is quicktest professional (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