WebDriver が突然起動しない JUnit テストがあります。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 ドライバー インスタンスの作成を乗り越えません。1週間前に同じテストを開始できたので、なぜそれが機能しなくなったのか、私には手がかりがありません.