51Testing软件测试论坛
标题:
【求助】关于Selenium方法调用的问题
[打印本页]
作者:
mx113040
时间:
2012-7-16 09:19
标题:
【求助】关于Selenium方法调用的问题
下面这两段代码是可以执行的,但有一个问题就是如果我把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");
}
}
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2