我有一个 JUnit 测试,其中我的 WebDriver 不会突然启动。我有 Firefox 版本 14.0.1,我正在使用 Selenium 2.25.0
@Before
public void setUp() throws Exception {
driver = new FirefoxDriver();
wait = new WebDriverWait(driver, 10);
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void test() throws Exception {
//Test running here
调试无法克服创建 firefox 驱动程序实例。我不知道为什么它不再起作用了,因为我能够在一周前开始相同的测试。