For example out of 100 test cases if I ask you to automate
how many you can automate?
Answers were Sorted based on User's Feedback
Answer / kiran
I can automate all the 100 testcases but it depends on the
requirement.Better not to automate each and every testcase
u write.Testcases which we need to re-execute no of times
in the entire process of testing can be automated.
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / tripathy
Hi,
1. Study all the test cases.
2. Select the test cases with are used frequently(Used for
regression).
3. Select the frequently used test cases which can be put
in to scripts.
4. Add the autimated test script to the test suite or Test
framework.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / bojja ravi kumar
Automating a Test Case is based on
1)how effectively we can test based on requirement and
expected result.
2)the feasability whether we can automate the test(else we
have to execute manually)
3)If we are going to automate,the test also depends on Test
environment and Test setup.
4)We have to develop the test cases in such a way we
shouldn't face any issues while test execution and check
the entire scenario is covered or not when we automate the
test.
Prior to the above,the decision to automate the test should
satisy the client
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / karan
How many you can automate is based on
1. if the automation framework is in place.
2. How complex is the AUT's test objects for automation
tool to identify uniquely.
3. Do you have scripts for preparing test data at DB level.
4. Can you prepare test data from UI?
5. Any specific reporting requirement?
6. Length of each test case and no. of verification points.
These are some important questions u need to know to find
out how many can be automated and in what time.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / jyothi
You need to get some more specifications out of the
interviewer like..how many of them fall in to regression
Testcases,then our first priority of automating would be
regression TCs.
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / nisha yadav
In case of 100 test cases you need to be specific that which
are those cases which can cause fatal error for the application.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kiranbabu
Out of 100 Test cases,
first you have to use Traceability Matrix
No one can guaranteed for 100% defects free,
Among 100 test cases,we can test 90%.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / kishore kumar
Its completely depends on the functionalities.
We dont test all the test cases by Automation.
First we prefar for Manual testing.80% Manual is complete then We go for the Automation.
Here We have only 100 test cases so we preffar to Manual testing.Because Automation tool is expensive and the developing test script time more and must knowledge on tool.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / murali krishna gvs
1. Identify the Functional test cases in 100 TC
2. Identify the Automation requirement in fun test cases
3. Club the fun test cases based on the fun flow
4. Now we arew able to find the count of test cases.
5. Then start the Script.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / u14810
Hi;
Which most functionality is very important,thats i
automate.
| Is This Answer Correct ? | 2 Yes | 4 No |
How to write test cases for "hotel reservatrion" for ms word? Thanks a lot!
Explain which test cases are written first black boxes or white boxes?
Explain the syntax testing?
1 Crystal Ball 1.1 Purpose This is a simple tool, for entertainment purposes only. 1.2 Scope Only for registered user. 1.3 User Interface Single page with graphic of crystal ball, and text box for typing question. User has to type her question in text box outside ball. Reports: - On ‘submit’, the system needs to access any one of the pre-stored responses at random and display in a graphical, visually appealing manner in the crystal ball. - Audio / graphical changes need to be built in, for added user experience enhancement, like music, sound effects, visual changes. Need to get details.
IF A > B THEN C = A – B ELSE C = A + B ENDIF Read D IF C = D Then Print "Error" ENDIF A. 1 test for statement coverage, 3 for branch coverage B. 2 tests for statement coverage, 2 for branch coverage C. 2 tests for statement coverage. 3 for branch coverage D. 3 tests for statement coverage, 3 for branch coverage E. 3 tests for statement coverage, 2 for branch coverage
in any software company how we got the srs document.how we get it is it available in version control or in mannual we get the document
7 Answers AppLabs, Pinsoftek Infosolutions, TCS,
Can someone help to write testcase for the scenario as early as possible.: 1. Complaint logged since one week 2. complaint info sent to supervisor with high priorit mail 3. 10 users logged into website , performance could not be degraded ( response within 5 seconds) 4. site should be user protected. 5. it should be work with IE 6 IE 7 6. complaint log should be generated more than one week
Explain the agile testing?
write a testcase for electronic door?
write a test case for employee income caculation it is awindows aplication when window is opened all options should be disabled except empno when user enter 3 charcters empname,empdes,basic should be displayed but they should be inactive,HRA,DA are active enter these two gross is displayed,enter tax then net income is displayed.all inputs must be integers and min is 1 and max is 4 charcters for all text boxes.gross =basic+HRA+DA and netincome= gross- tax
How to write test cases on for Logging management?
Given the following code, which is true about the minimum number of test cases required for full statement and branch coverage: Read P Read Q IF P+Q > 100 THEN Print “Large” ENDIF If P > 50 THEN Print “P Large” ENDIF how to find statement and branch coverage? Explain in brief?