how u conduct GUI testing and PERFORMANCE testing on MS-
WORD? and What r the GUI Test Cases and performance Test
Cases?
Answer Posted / srinu
Gui test case explans about the allighment of the
menus,formt size,appreance and functionalities of the
objects (ex: If you save a file is it saving)
Performance testing explans about the load and strees of
and application
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the parameterization?
How to find the name of the machine where you are running your automation scripts in qtp?
How will we compare the texts in the two word files using QTP writing the script in Descriptive Programming. Thanks
Hello everyone! I am just writing a small test for a windows application. I have a problem with a text output value. The value i am trying to catch is presented in a scrollable textbox. When the text is too long, only a portion of it gets captured. Do you have any experience with this?
Did QTP prove efficient for your project? Yes or No, explain?
How to create a standard checkpoint ?
Consider one application is open, clicking one menu will open another application in another browser. QTP does not catch the URL of the second browser(second application). can we capture it ?
Explain the concept of object repository and how quicktest professional recognises objects?
How can you send user defined messages to test report?
What are the things(properties, and other details) will be recorded while recording an object using normal recording?
Write the script to delete the mail which is at 9th,13th and 18th place in INBOX of Gmail ?
assume i have few url link how will i dynamically call then using descriptive programming?
How do you know the location Id of an object if you know its index id?
How do you synchronization point through DP?
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