Answer Posted / meena
when we require information from more than one table then
we need Joins.
Different types of Joins are:
1. Equi Join
2. Non Equi Join
3. Inner Join
4. Outer Join
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Tell us what you know about table-driven testing?
What is extreme programming and what has it got to do with testing?
What is testng and why is it better than junit?
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
In general, how do you see automation fitting into the overall process of testing?
What is ‘good code’? What is ‘good design’?
How does load testing work for websites?
Tell me what is intellij?
What are the types of the framework used in software automation testing?
What are the types of framework used in software automation testing ?
Tell us can we find all links on a web page?
Give some examples of priority – severity defect levels.
Manually in a page 10 check boxes is there.so 5 check box "on" and 5 check box "off" so using descriptive program how to know how many "on" and how many "off" plz help me this question answer?
List down the primary features of a good automation tool?
write a programme to insert into elements in array?n finding duplicate characters in given sting?