Do you support automated testing? Why?
Answers were Sorted based on User's Feedback
Answer / shoba
I support automation testing because it helps us to save
time in testing the large application with large number of
fields.By manually testing the large application includes
more effort and more number of resources.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / obul reddy.m
Because its take very less time and easy to execute the
test cases using tool and cost also very less,
there is no chance miss the bugs using automation tool.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / padmas
I do not support automated testing,
when,
-sufficient skills& resources are not available to maintain
the automated testing environment.
-automated testing is not providing any solution to the
problems faced during manual testing.Problems related to
time,resources,human intervention while testing the
applications are not getting resolved by automating the
testing process.
I do support
when
-there is time crunch during critical deliverable
-error guessing is used to find out more defects through
manual testing but unable to find, such as memory leaks etc.
- manual testing becomes routine.
- there are insufficient human resources , to progress the
testing process.
-24/7 testing service is required.There are few applications
that need to run continuously for a 24hrs periods of time /
few days / without shutting down the pc's.
-when there are applications to be tested to measure the
performance issues like down time,up time, fail
over/recovery testings, Meantime to failure and meantime
between failures etc.in which human resources cannot be
indulged for longer period of time.
-There is need to train human resources in manual testing,
in order to make them to learn new techniques and improve
the efficiency and effectiveness of testing process.
-testing activities are directly linked to the
organizational growth and in business activities.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / karim
i agree with one thing that manual testing can never be
replaced by automation testing, there is always a need for
manual testing team for any project since it helps in
detecting bugs that were never thought of earlier which can
always happen during build change of projects. Automation
helps in a way that it test only scenarios which have been
scripted
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ram.polavarapu
yes am going to support for automation testing only why
because the time taking is very less and we can improve the
quality of the application campare to mannual,and we can
use the same scripts any number of times by doing the
enhancements...
| Is This Answer Correct ? | 0 Yes | 0 No |
Tell us how could you explain the main difference between webdriver and rc?
Which is the best place to learn Loadrunner performance testing in hyderabad ?
What are the main benefits of test automation?
What types of documents would you need for QA, QC, and Testing?
Hi, Below is the code that i ran on selenium RC using eclipse IDE and java coding.: package source; import org.testng.annotations.BeforeSuite; import org.testng.annotations.Test; import com.thoughtworks.selenium.*; public class parameterized extends SeleneseTestCase { private Selenium browser; public static void main(String []args) { String arr[] = new String[5]; arr[0]= "bert"; arr[1]= "regular"; arr[2]= "copyonly"; arr[3]= "doert"; arr[4]= "inter"; parameterized obj = new parameterized(); obj.setUp(); obj.login_parameterize(arr); } @BeforeSuite public void setUp() { browser = new DefaultSelenium("localhost",4444, "*chrome", "http://goolge.com"); browser.start(); browser.open("http://goolge.com"); browser.waitForPageToLoad("30000"); browser.windowMaximize(); browser.open("/"); browser.click("gb_23"); } @Test public void login_parameterize(String[] arr ) { for(int i=0;i<=5;i++) { for(int j=0;j<=2; j++) { browser.type("//input[@id='Email']", arr[i]); browser.type("//input[@id='Passwd']", arr[i]); browser.click("//input[@id='signIn']"); browser.waitForPageToLoad("30000"); } } } public void EnterValuesIntoTextField_CheckWithGetValue() throws Exception { selenium.open("http://www.essaywriter.co.uk"); assertEquals("", selenium.getValue("id=textInput")); selenium.type("id=textInput", "Text In The Field"); assertEquals("Text In The Field", selenium.getValue("id=textInput")); } } When i ran this test i got an error which says: "Method login_parameterize requires 1 parameters but 0 were supplied in the @Test annotation." Any help is much appreciated. thank Gab
Tell us what is the alternate way to click on login button?
How can a mainframe application be tested using Automation tools. I mean which is the best tool to do Mainframe testing?
What are software testing metrics
How do you select the 2nd item in a List box or drop down through selenium RC (Java)
Describe common problems of test automation.
Does automation replace manual testing?
hi to all, if we open a browser(for ex. yahoomail.com) using navigate command. the cursor by default focussing on the 'yahoo id' html edit box. how to get the label(ie.,yahoo id) of that html edit box using descriptive program. here we should not use identify tool to get the property,thtml editbox method. by tracing the cursor position we have to get the label name. is it possible? please let me know.