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

Tell me what is the purpose of getoptions() method?

534


What are the various kinds of frameworks that can be used in software automation testing?

513


What is the purpose of getoptions() method?

592


Name the frameworks that are used in software automation testing?

538


Why do you prefer selenium automation tool?

550






What are the types of the framework used in software automation testing?

528


Can you achieve 100% automation?

587


wat would be the -ve test case for search where u can brak it ,tell dnt tell abt spl characters insertion ,boundary values chk.

1440


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

2157


What kinds of annotations are used in testng?

534


Tell me what is an absolute xpath?

538


Where you have applied oops in automation framework?

657


What is testng and why is it better than junit?

571


Explain me what is the difference between setspeed() and sleep() methods?

598


What generally is the structure of a framework?

579