How to map the test cases to requirements in QC?
Answer Posted / chandan kumar
For requirement mapping in QC We have to go to Requirement
Tab in QC.Then Add requirement their as per RTM created .
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
When should I use smart identification?
can anyone tell me what to say in interview when interviewer asks about "tell me about your framework in your project"?
What is difference between Recording time object identification and Run time (Execution) time.
For which type of projects the iterative model is not suitable?
What is the syntax for how to call one script from another?
What is the difference in testing a client-server application and a web application?
How do you delete unwanted results in qtp?
How to test login module with different username and password by using data driven testing in QTP?
What are the advantages of a Hybrid framework?
Give me detailed theritical explanation about keyword driven, hybrid framework, environment variables, hybrid frame work
When using descriptive programming?
How Can I find the least value in a bunch of variables using qtp.. E.g.:- A = 210, B = 212, C = 60, D = 111 I don’t want to write bunch of lines for this…. Is there a way to get the result in one line…..
ACTUALLY I AM WORKING IN THE DISTRIBUTION DOMAIN.MY COMPANY IS PROVIDING DISTRIBUTION SOFTWARE FOR PHARMA AND FMCG DISTRIBUTORS.HERE I AM USING QTP 9.2.HERE IN MY APPLICATION WHILE RECORDING ONE WINDOW APPEARS.IN THAT I CAN SELECT THE ITEM OR NO NEED TO SELECT.BUT WHILE RUNNING THE SAME SCRIPT THE WINDOW MAY NOT APPEAR OR APPEAR.HOW TO WRITE SCRIPT FOR THIS
How to capture a window in QTP?
I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object