After creating testcases, how do you start testing in QTP?
what methodology will follow?
Answer Posted / priya
Data driven Approach can be used. For this first datatable
has to be prepared which will contain the test data for
each of the test cases. Now scripting can be done which
will satisfy the test cases.
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What are the various types of Actions in UFT?
What is the qtp testing process?
What is checkpoints for qtp?
What is throw Object?
Explain how you can replace string in qtp?
What are the different recording modes?
how to test Web application using QTP software
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
Hi, I got error message as "object does not support this property or method: "Test.Actions" when i execute the following line of script on QTP 9.0 Dim qtApp, qtRep Set qtApp = CreateObject("QuickTest.Application") Set qtRep = qtApp.Test.Actions("Action1").ObjectRepositories Can anyone tell me where i am wrong.
What are parameterizing tests?
Explain the concept of object repository and how QTP recognizes objects?
Hoe can we do retesting using functions please give the code for it using login page
How do you create regression test packs?
what is meant by source control?
What is ‘object spy’ and what is the function of object spy in qtp?