Suppose we r running a test which have 7 to 8 steps for
different functionallity of and object..and suppose upto 4
step test passes but after 5th step test fails. what u will
do in this condition will u start the test again or will u
consider that rest steps will be working fine.

Answer Posted / bhavya s

In General Case Scenario: At this condition I will go ahead
and start the test again.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an automated test script?

676


What factors determine the effectiveness of automation testing?

545


Tell me what is regression testing?

558


Tell us what is the difference between single slash (/) and a double slash ( //) in xpath?

648


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

549






what is aom and how to add object repository? i am very new to QTP please help me

1456


What are the primary features of good automation tool ?

591


Any one suggest me for Free ware (Opensource) Automation tool for regression testing.

1545


What is difference between selenium and QTP tools Which is best tool... Which is most used tool

941


What is client side validation? Write a snippet.

614


We have a testing assignment that is time-driven. Do you think automated tests are the best solution?

1687


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 is functional and regression testing?

627


Is there any freeware tool for automation testing of mobile applications for BlackBerry and iPhone platforms ?

2517


What are the important modules of an automation testing framework?

585