Hi I am trying to work with web driver...and Junit..
i am getting below error
Unable to connect to host localhost on port 7055 after 45000 ms
Can any one pls help me how to resolve this issue..
FF browser is 4.0 and Windows Xp
below is the code:
public class First {
WebDriver driver;
@Before
public void startSelenium() {
driver = new FirefoxDriver();
}
@After
public void stopSelenium() {
driver.close();
}
@Test
public void testUntitled() {
WebElement a=driver.findElement(By.name("q"));
a.sendKeys("selenium");
}
}
--
Thanks,
Naga