Firefox无法运行并打开空白

时间:2012-04-30 22:35:00

标签: selenium

我正在使用几周前在Firefox中创建的脚本。当我加载它时,Firefox打开但是空白并且不运行。

selenium = new DefaultSelenium("localhost", 
            4444, 
            "*firefox C:\\Program Files (x86)\\Mozilla Firefox\\firefox.exe", 
            "http://www.test.com/");
selenium.Start();

Firefox配置文件会妨碍吗?它每次都会打开一个新的Firefox实例,但不会进入测试站点。

1 个答案:

答案 0 :(得分:1)

通过为您的selenium实例编写"http://www.test.com/",您只需为测试提供 base url 。要导航到测试站点,您应该使用selenium.open("/")命令。要导航到"http://www.test.com/test.html",您应该使用selenium.open("/test.html"),依此类推。