Answer Posted / ankit srivastav
1. Recording a scenerio in QTP of my web based application.
2. Make 100 copies of that scenerio and run the test (scenerio run for 100 times)
3. In that case, do the load of application on server.
4. The basic logic of running the copy 100 times is to create same scenerio as if 100 users were working.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Name the properties you would use for identifying a browser and page when using descriptive programming?
what is vmodel?advantages and disadvantages of vmodel?
What is QTP testing process?
Who uses qtp tool?
How to get popup error message.
What is data driver in qtp? Where we use it?
if mandatory and Assitive propertys are shows same how will u write skript in QTP window
what is command for executing files?
What is the standard timing delay for web based application in qtp?
When ‘option explicit’ keyword is used in qtp?
Explain how qtp identifies objects?
What environment does qtp run in?
Approach for Installation,comaptibility,system testing
i need qtp tutorial. pls send it to sridhar.k151@g mail.com
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