O executável do driver deve ser definido pela propriedade do sistema webdriver.ie.driver

Estou usando o Selenium para automatizar os testes. Meu aplicativo usa exclusivamente o IE, ele não funcionará em outros navegadores.

Código:

import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

public class Test {
    public static void main(String[] args) {
        final String sUrl = "http://www.google.co.in/";                             
        System.setProperty("webdriver.chrome.driver","C:\\Users\\vthaduri\\workspace\\LDCSuite\\IEDriverServer.exe");
        WebDriver oWebDriver = new InternetExplorerDriver();
        oWebDriver.get(sUrl);
        WebElement oSearchInputElem = oWebDriver.findElement(By.name("q")); // Use name locator to identify the search input field.
        oSearchInputElem.sendKeys("Selenium 2");
        WebElement oGoogleSearchBtn = oWebDriver.findElement(By.xpath("//input[@name='btnG']"));  
        oGoogleSearchBtn.click();

        try {
            Thread.sleep(5000);
        } catch(InterruptedException ex) {
            System.out.println(ex.getMessage());
        }
        oWebDriver.close();
    }    
}

E aqui está o erro que estou recebendo

O caminho para o executável do driver deve ser definido pela propriedade do sistema webdriver.ie.driver; Para mais informações, vejahttps://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver. A versão mais recente pode ser baixadahttp://www.seleniumhq.org/download/ 12 de junho de 2012 16:18:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute INFO: Exceção de E / S (java.net.SocketException) capturada durante o processamento da solicitação: Software causou a anulação da conexão: recv falhou em 12 de junho, 2012 4:18:42 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute

Alguém pode me ajudar com isso?

questionAnswers(5)

yourAnswerToTheQuestion