What is QuickTest Automation Object Model? Where we can use AOM?
Answer / sonal.pagare
It's a way to write scripts so as to automate your QuickTest
operations.
This is a small list of places (but not limited to) where we
can use AOM. Thumb Rule - Use it at any place where you find
yourself doing repetitive tasks while using QTP.
• AOM can come handy when you have a large no of scripts to
be uploaded to QC. A simple script can save you hours of
manual work!
• Use AOM to initialize QTP options and settings like
add-ins etc.
• You can use AOM to call QTP from other application: For
ex: You can write a macro for calling QTP from excel.
Caution: AOM should be used outside of QTP and not within
the script (during playback). Though there is no harm using
it inside but some of the AOM statements might fail.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is bultin funtaion in QTP &tell me five examples?
I want to read XML file loaded in Quality center and compare the values with the values displayed in Application (web table).How can I do that
How many types of recording facility are available in QTP?
how can i pass a "automation script" as a parameter in a function give me need full suggestion thank inadvance
I wnnt to learn about QTP Automation Framework,please give URL Address to get more information about AFW.
Please anybody can tell the where can i get the information about pharma and bank testing, i put the pharma&bank projects in my resume, so i dont know what to tell about them, so where can i get the information and what we test for these, i need domain information, what r the screen we test?
How do I generate Test Results window using descriptive method ( run time ) after my test execution process? Please have a look of my below code. ========================================================= Dim qtApp Dim qtTest Dim qtResultsOpt Set qtApp = CreateObject("QuickTest.Application") qtApp.Launch qtApp.Visible = True qtApp.Options.Run.CaptureForTestResults = "Always" qtApp.Options.Run.RunMode = "Fast" qtApp.Options.Run.ViewResults = True qtApp.Open "C:\Automation\Example", True Set qtTest = qtApp.Test qtTest.Settings.Run.OnError = "NextStep" Set qtResultsOpt = CreateObject ("QuickTest.RunResultsOptions") qtResultsOpt.ResultsLocation = "C:\Automation\Example\Res1" qtTest.Run qtResultsOpt MsgBox qtTest.LastRunResults.Status qtTest.Close Set qtResultsOpt = Nothing Set qtTest = Nothing Set qtApp = Nothing ========================================================== This code is working fine, but Test Result window is not displaying after execution. Anybody can please help me regading the same. Thanks Akshaya Madali Capgemini India Pvt Ltd 9823213538
what type automation is fofollowed in the project?
There is a table with 4 columns and 10 rows, how to write the script to display the first column records using qtp? can anybody help me with script?
Explain the concept of object repository and how QTP recognizes objects?
What is throw object?
In web page there is five OK buttons available, while recording i click on 3rd OK button, How QTP identify the 3rd OK button while running script? Is qtp identify 3rd ok button?