How many test cases have you automated per day?



How many test cases have you automated per day?..

Answer / Sandeep Kumar Verma

The number of test cases automated per day can vary greatly depending on the complexity of the project, available resources, and the level of automation expertise. A skilled tester may automate several test cases per day, while a beginner may only be able to automate one or two.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Automation Testing AllOther Interview Questions

Tell me what is automation testing?

1 Answers  


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

1 Answers  


Does Microsoft Corporation, Sun Microsystems possesing any maturity levels?if yes, what is that level?

1 Answers   CTS,


What is javascriptexecutor and in which cases javascriptexecutor will help in selenium automation?

1 Answers  


hi friends.....please help me...i have very ambiguity which one be selected between selenium or ETL-TESTING..

1 Answers  


Explain how to perform load-testing?

1 Answers  


What is Automation Testing Framework

5 Answers   Covansys,


Tell me what is the firefoxdriver, class or an interface? And which interface does it implement?

1 Answers  


good faculty for selenium in hyderabad?

5 Answers  


I heard that there is a test management system that makes tracking metrics an easy task. I would like to know more about it. Please guide me.

1 Answers  


How can we make one test method dependent on other using testng?

1 Answers  


Does automation testing have any disadvantages?

1 Answers  


Categories