|
4#
楼主 |
发表于 2011-9-26 16:09:11
|
只看该作者
回复 3# eqbin
-
- import com.thoughtworks.selenium.*;
- import junit.framework.TestCase;
- import org.junit.Assert;
- public class TestGoogle extends TestCase{
- public Selenium selenium;
-
- public void setUp() throws Exception{
- selenium = new DefaultSelenium("localhost",4444,"*firefox","http://www.google.com");
- selenium.start();
- }
-
- public void testGoogle () throws Exception{
- selenium.windowMaximize();
- selenium.open("http://www.google.com/");
- selenium.type("q", "selenium 中文论坛");
- selenium.click("btnG");
- selenium.waitForPageToLoad("30000");
- Assert.assertTrue(selenium.isTextPresent("selenium 中文论坛"));
- }
-
- public void tearDown()throws Exception{
- if(selenium!=null){
- selenium.stop();
- }
- }
- }
复制代码 |
|