How to send QTP test results to an email...(with out using
Quality Center)?
Answer Posted / ankitha
Take a screen shot of the test results..and save it..and
send it to u r mail id..i think u are surprised with my
answer...ok...
| Is This Answer Correct ? | 2 Yes | 50 No |
Post New Answer View All Answers
What is the use of sendkeys and what are send keys
How to execute a winrunner script in quicktest professional?
Explain the types of object repositorys in qtp?
Explain types of descriptive programming?
hi all here i have tab named "Workbench" By clicking on "workbench" tab.it displays 4 tabs like below workbench common cargo commercial charter "common" tab have 10tabs inside,"cargo" tab also haveing 15 tabs inside and remaining two tabs also having few tabs inside. when clicked on "common" tab.it displaying the script like tab("workbench").select"common" if i clicked on "cargo".it displaying the script like tab"workbench_2").select"cargo" if i clicked on "commercial".it displaying the script like tab"workbench_3").select"commercial" if i clicked on "charter".it displaying the script like tab"workbench_4").select"charter" I have used a "FOR LOOP" for common,commercial,cargo,charter tabs.it was stopped at second tab SO, CAN I RECOGNIZE "WORKBENCH_2,_3,_4" AS A SINGLE VARIABLE if not, can anyone plese help me to solve this
What is a programmatic description?
What is 'sleep' in sync point?
Where we can use the synchronization?
What is the difference between analog and low level recording?
Explain the concept of object repository and how quicktest professional recognises objects?
What is the Command used to start the QTP
how will load the object during runtime?
How we can use the database checkpoint on a java web based application in which the database connectivity is done using JDBC->Pure Java type (in this type there is no need to create a DSN). At present in QTP we can fetch database values using checkpoint only through DSN. Is there any programming for this if we don't have DSN (ODBC)
how to disable the pop ups through QTP using a script
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