WHAT IS THE BEST WAY TO CHOOSE AUTOMATION TOOL?

Answer Posted / padmas

The best way to choose automation tool is,
Going through the feature list of both automation tool and
application under test.
Then evaluating the tool over the testing process over the
manual testing effort.
Manual test effort reports vs cost.and scope of the testing
vs human resources effort.Schedule vs.Complexity involved in
training the automation tool.etc.will help in choosing the
appropriate automation tool .

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain me what is a framework and what are the frameworks available in rc?

525


Tell me how can you switch back from a frame?

559


What u mean by infrgistics control (What is infrgistics Controls)?

1607


What are the important operations in database testing?

546


List down the primary features of a good automation tool?

519






What are the important modules of an automation testing framework?

582


What COM Interfaces u r using in QTp While Connecting QC or TD? Or in QTP?Any body plz urgent...

1548


Please explain how to perform load-testing?

581


Tell me how can the user get a text of a web element?

517


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

2153


What is Sikuli?

618


IN AN APPLICATION HOW DO YOU IDENTIFY THE TASKS WHICH SHUD BE DONE MANUALLY AND WHICH SHUD BE AUTOMATED?

1873


Tell me what is regression testing?

555


How you report bug in to bugzilla

1850


you have same applications (same server configaration)A&B you are doing nonfunctionality testing . what they differ in?

1599