I am using Selenium Grid to start an InternetExplorerDriver-Instance remotely. Therefore I use the following code:
DesiredCapabilities capability = (DesiredCapabilities) DesiredCapabilities.internetExplorer();
RemoteWebDriver driver = new RemoteWebDriver(new URL(getHubUrl()), capability);
At the second line of code there is a WebDriverException saying
Error communicating with the remote browser. It may have died.
The remote machine is a Windows 7 system. I can't understand why this won't work?!