why should I automate mysoftware testing?
Answers were Sorted based on User's Feedback
Answer / ravi kiran
Automation Testing Save Time and Money
Improve Accuracy
Increases Test Covrage
Can perform test which are practically not possible by a
human.
Test scripts once generated can be uesd for Regression
Testing
Helps both Developers and Testers
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sid
The Benefits of Automated Testing Manually testing software
is a time-consuming and often tedious process, one which
cannot guarantee consistency of testing across releases and
across platforms. Additionally, time constraints often do
not afford us the luxury of being able to manually test and
retest our applications before they are
released. Inevitably the question remains, “Did any
critical bugs go undetected?”
Automating your testing leads to a better use of your
resources. Skilled testers are freed up to put more effort
into designing better tests while machines that would
otherwise lie idle overnight can be used to run
unattended automated tests.
• Providing more coverage of regression testing.
• Reducing the elapsed time for testing, getting your
product to market faster.
• Improving productivity of human testing.
• Improving the re-usability of tests.
• Providing a detailed test log.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sreedevi
if the project is having more functionality or Project is
divided as Releases then it is better to go for
Automation...
Scripts will useful whild doing regression testing....
Is This Answer Correct ? | 1 Yes | 0 No |
If automating - what is your process for determining what to automate and in what order?
What criteria do you consider for automating a test?
4. How we implement Winrunner,in our project?
What is Bidirectional Tracebility, how u use it.
Tell me which web driver implementation is the fastest?
What kind of tests would you automate?
It is a 30 days project & the client is in Singapur and we have to submit daily report regarding 1) What are the completed works, 2) What are the Pending Works ,3) Work planed for next day. You are free to assume regarding the project. can anybody help me to write an email to the client or Senior person who is staying in abroad
can any one tell me the examples of white box 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
notice the distinction between data driven testing and retesting?
What all different approaches can be used for designing an automation solution?
How to Rcognize the Objects in the Web Page Dialog Using QTP