Answer Posted / sowmiya
The main purpose of testing is to
1)compare the actual result with the expected result.
2)find bugs
3)is to find whether the particular item satisfies the customer needs (Quality).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Tell us the difference between assert and verify commands?
Is there any freeware tool for automation testing of mobile applications for BlackBerry and iPhone platforms ?
What is difference between selenium and QTP tools Which is best tool... Which is most used tool
how to import specifically 2nd column elements to runtime datatable in excel sheet if it contains 3 columns
How software testing is handled?
What is hybrid automation?
Tell me how would you test your own element locator?
Describe some problem that you had with automating testing tool.
What is javascriptexecutor and in which cases javascriptexecutor will help in selenium automation?
What is the scripting standard while performing automation testing?
How do you choose which automation tool is best for your specific scenario?
What is meant by the automation framework?
Highlight attributes of good framework?
what is the dictionary objects in QTP? and what is method of vb script using virtual object wizard........
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