Senhores,
estou recebendo o seguinte erro quando tento executar uma classe que compila normalmente:
The path to the driver executable must be set by the webdriver.gecko.driver system property
Até já olhei outro item do fórum com essa dúvida, mas não consegui entender como foi resolvido. Até tentei usar a linha que está comentada, mas não consegui resolver.
CODIGO ABAIXO:
import org.openqa.selenium.By; import org.openqa.selenium.WebElement; import org.openqa.selenium.firefox.FirefoxDriver;
public class TesteAutomatizado {
public static void main(String[] args) {
FirefoxDriver driver = new FirefoxDriver();
//System.setProperty("webdriver.gecko.driver", "webdriver.ie.driver");
driver.get("www.google.com.br");
WebElement campoTexto = driver.findElement(By.name("q"));
campoTexto.sendKeys("Wanderson");
campoTexto.submit();
}
}