We have a testing assignment should be test in very short
span.Do you think automated tests are the best solution for
this type of scenario?

Answers were Sorted based on User's Feedback



We have a testing assignment should be test in very short span.Do you think automated tests are th..

Answer / p73_73@yahoo.com

No. Automated testing should be used when
1. there is need of regression testing.
2. It needs time to write scripts. Scripts can be written
ahede of time if there is time.

Is This Answer Correct ?    2 Yes 0 No

We have a testing assignment should be test in very short span.Do you think automated tests are th..

Answer / lia

No. Automating the test for projects with short development
life cycle is more time consuming and is not effective. It
can be handy for projects with long SDLC as automating the
scripts requires more time.

Is This Answer Correct ?    1 Yes 0 No

We have a testing assignment should be test in very short span.Do you think automated tests are th..

Answer / prem

We are using automation tool in case of a big project.
2.When we are conduct regresstion testion after it necessary
for automate.but in a small project it's not required for
automation.if we are using automation tool than
1.unnecessary it will take more time.
2.It's more costly.
Automation testing is necessary when retesting is more.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Automation Testing AllOther Interview Questions

6. Who will write the use case? 7. What is web based application?

3 Answers   Eka Software,


Simplify the term defect severity.

0 Answers  


Can anybody would u like to tell the details of Automation Framework, with example. and also give preferable books. sites. Thanks in Advance.

2 Answers  


Can the activities of test case design be automated?

0 Answers  


22. Scenario: There are 1 to 100 numbers. Each number should be keep in the each column like from A column to Z column ie 1 to 26. From 27 to 52 should be in 2nd row in the excel sheet. This has to be continue till 100. How do you write Java program and what are various methods.

0 Answers  


Can the activities of test case design be automated?

0 Answers  


Hi friends please tell me regardinr to QTP descriptive programming. if any materials are there suggest me. or if you have please give me. thank u waiting for reply

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

0 Answers  


What do you like (not like) in this job?

1 Answers  


Tell us what automation tools could be used for post-release validation with continuous integration?

0 Answers  


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

0 Answers  


Does automation replace manual testing?

2 Answers  


Categories