Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

What is the parameterization?

979


How to find the name of the machine where you are running your automation scripts in qtp?

952


How will we compare the texts in the two word files using QTP writing the script in Descriptive Programming. Thanks

1960


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?

2549


Did QTP prove efficient for your project? Yes or No, explain?

6531


How to create a standard checkpoint ?

998


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 ?

1887


Explain the concept of object repository and how quicktest professional recognises objects?

951


How can you send user defined messages to test report?

986


What are the things(properties, and other details) will be recorded while recording an object using normal recording?

1918


Write the script to delete the mail which is at 9th,13th and 18th place in INBOX of Gmail ?

2047


assume i have few url link how will i dynamically call then using descriptive programming?

1961


How do you know the location Id of an object if you know its index id?

988


How do you synchronization point through DP?

1010


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

2845