|
下面这两段代码是可以执行的,但有一个问题就是如果我把setOpen()单独放置成一个Class文件时,Test 这个代码就不能运行了。会报空指针或者找不到合适,不知道有没有解决的方案
public class OCExplore extends TestCase
{
private Selenium selenium;
public void setUp() throws Exception
{
GetUrl URL=new GetUrl();
selenium = new DefaultSelenium("localhost", RemoteControlConfiguration.getDefaultPort(), "*iexplore","http://localhost:8080");
selenium.start();
super.setUp();
}
public void setOpen(String url) throws Exception
{
selenium.open(url);
}
public void tearDown() throws Exception
{
selenium.stop();
super.tearDown();
}
}
public class Test extends SeleneseTestCase
{
public static void main(String[] args) throws Exception
{
OCExplore explore=new OCExplore();
explore.setUp();
explore.setOpen("http://www.baidu.com");
}
} |
|