what type of test cases tou will automate?
Answers were Sorted based on User's Feedback
Answer / rajendra prasad
Before going to Test automation Test engineers prepare
Testcases for each functionality of the application.
Test Automation Used to reduce the testing time of the
application.
It is impossible to automate the all fucntionalities
of any project.
Some testcases are very important and these testcases are
needs to run every time after getting a build for testing.
these testcases are called as Smoke/Sanity testcases.
One morte important thing to remember:
Automation will be used for products/projects which needs
continuous maintanance support and updations.
Repeatedly executing textcases,more time consuming testcases
will be automated.
Automated tests used to conduct regression testing on
application.
Byeee
Rajendra Prasad
rajendra_penumalli@yahoo.com
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / srinivas
Regeression Test cases
bcak end test cases
sanity/smoke test cases
performance related test cases we can automate
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / marcus
When there is repeatability in the application and the
application which under goes maintanence in large scale
requires automatedd testing.In the other hands when there
is difficulty in validating large amount of data manually
requires automated testing.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ram.polavarapu
regression testing we can automate and sanity test also
| Is This Answer Correct ? | 0 Yes | 0 No |
hi all, I have installed QTP successfully on windows vista. I am able to record and run on windows applications, but facing problem with web applications. While recording, I am able to open the web application, but when I click on any object or give login name and password, the events are not getting recorded in QTP. Could anyone solve the problem. Any settings to be done for web applications other than selecting web-addin? Waiting for replies. Thanks in advance.
Will QTP gets installed on virtual PC.What is the maintenance number to be given
What r steps to migrate from Manual testing to QTP?(IN BOTH WEB BASED AND WINDOWS APP)
DIFFERENT RUN MODE IN QTP..1-VERIFY MODE 2-UPDATE MODE 3- dEBUG MODE. My question is in whic sitution we use these modes Explain me with example
Tel me what was the automation testing process you followed?
How will you handle application crash using recovery scenario manager(step by step process)?
Hi, I want to retrieve the cell data in the WebTable. For that I have defined a new test object under the browser and have given html tag and text as the test object properties. But while I try to identify it it says 'Object description is not unique'. I tried adding innerhtml, outerhtml, innertext and outertext along with the ordinal identifiers; but no use. What more properties need to be added to identify it? Also I want to enable smart identification for this object but the field is disabled in the object repository for this object alone(In QTP tools->object identification the enable smart identification checkbox is enabled). How do I enable it?
How to use debug tools?
How to Test Dynamic links ?
QTP Data Table Having 10 records with 10 to 15 fields(lets say).now i want to get alternative records from datatable.pls can any one answer it?
Differences between QTP & Winrunner?
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