If automating - what is your process for determining what to
automate and in what order?



If automating - what is your process for determining what to automate and in what order?..

Answer / kundan yalangi

1)If a product is likely to have a future releases then its
better to automate the test cases inorder to save time and
effort


2) The order will be basically the flow of the
Application . Inorder to avoid the complexity , we can use
modular framework of Automation testing tool where the
application process flow is divided into several simple
components called actions .


Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Automation Testing AllOther Interview Questions

How do you plan test automation?

0 Answers  


What are the references for TSL functions.? Could anybody suggest me recommended book for Test Script Language.

0 Answers  


what is test complete tool? Which are most important terms in it? please give little introduction of it.

1 Answers  


What is a xpath?

0 Answers  


What are different coverages in function testing?

0 Answers  






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

0 Answers  


pls suggest me a good institute for loadrunner in hyderabad also what about a practice project?

43 Answers  


Can we prioritize tests in Junit. What is the sequence of execution in Junit?

0 Answers  


how to test an webbased application?

0 Answers   TCS,


5. What are the tests you are conducting through winrunner?

0 Answers   Eka Software,


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 is difference between selenium and QTP tools Which is best tool... Which is most used tool

0 Answers  


Categories