What is the extension of script and object repository files
in QTP?
Answer Posted / sridhar .b
The extension of Script in QTP is .vbs
The extention of object repository is .tsr
| Is This Answer Correct ? | 11 Yes | 7 No |
Post New Answer View All Answers
1. What is the difference between Keyword and function in the keyword driven framework? 2. How do you associate Keywords to the script ?
Why to use descriptive programming?
Explain different type of event trigger option.
What is contained in the object repository?
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
How many add-ins comes by default with qtp?
Can you write a script to check if the folder exists or not?
How can you identify the browser and its information using the qtp script?
Does QTP record on Objects created on XWindows Environment?
How to delete an object from the object repository?
how to test Web application using QTP software
What are the 3 main stages involved in testing with qtp?
What are benefits of qtp?
Explain different types of checkpoints?
Can we access the java methods in qtp. Because my requirement is to access the swt(for eclipse an it is java code) methods in qtp is it possible?