- divya_agsrdkProfessional
- Posts : 93
Join date : 2013-01-17
Program in eclipse using JUnit
Fri Feb 22, 2013 2:18 pm
import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@SuprressWarnings("deprecation")
public class GcdTest extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome",
"file:///C:/Users/Ss/Desktop/GCD.html");
selenium.start();
}
@Test
public void testGcd() throws Exception {
selenium.setSpeed("2000");
selenium.open("file:///C:/Users/Ss/Desktop/GCD.html");
selenium.windowMaximize();
selenium.type("name=n1", "5");
selenium.type("name=n2", "6");
selenium.click("css=input[type=\"button\"]");
String result = selenium.getValue("name=result");
System.out.println("the gcd is : " +result);
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
In the above program,
What is testGcd() an setUp() ??
R thy built in functions or methods..
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@SuprressWarnings("deprecation")
public class GcdTest extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*chrome",
"file:///C:/Users/Ss/Desktop/GCD.html");
selenium.start();
}
@Test
public void testGcd() throws Exception {
selenium.setSpeed("2000");
selenium.open("file:///C:/Users/Ss/Desktop/GCD.html");
selenium.windowMaximize();
selenium.type("name=n1", "5");
selenium.type("name=n2", "6");
selenium.click("css=input[type=\"button\"]");
String result = selenium.getValue("name=result");
System.out.println("the gcd is : " +result);
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
In the above program,
What is testGcd() an setUp() ??
R thy built in functions or methods..
Permissions in this forum:
You cannot reply to topics in this forum