i have a JUnit test where my WebDriver does not start out of a sudden. I have Firefox version 14.0.1 and I'm using 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
The debug does not get over creating the firefox driver instance. I have no clue, why it doesn't work anymore since I was able to start the same test a week ago.