import com.thoughtworks.selenium.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class junitprg extends SeleneseTestCase {
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 1234, "*firefox", "http://www.google.co.in/");
selenium.start();
}
@Test
public void testJunitprg() throws Exception {
selenium.open("/");
selenium.type("id=gbqfq", "testing");
selenium.click("id=gbqfb");
}
@After
public void tearDown() throws Exception {
selenium.stop();
}
}
No comments:
Post a Comment