3
respostas

Chromedrive

Não conseguir chamar o chromedrive, sempre aparece esse erro. Já coloquei dentro da pasta lib, mas ao executar consta esse erro:

Exception in thread "main" java.lang.IllegalStateException: The driver executable does not exist: C:\testes-de-sistemas\lib\chromedriver.exe
    at com.google.common.base.Preconditions.checkState(Preconditions.java:585)
    at org.openqa.selenium.remote.service.DriverService.checkExecutable(DriverService.java:146)
    at org.openqa.selenium.remote.service.DriverService.findExecutable(DriverService.java:141)
    at org.openqa.selenium.chrome.ChromeDriverService.access$000(ChromeDriverService.java:35)
    at org.openqa.selenium.chrome.ChromeDriverService$Builder.findDefaultExecutable(ChromeDriverService.java:159)
    at org.openqa.selenium.remote.service.DriverService$Builder.build(DriverService.java:355)
    at org.openqa.selenium.chrome.ChromeDriverService.createDefaultService(ChromeDriverService.java:94)
    at org.openqa.selenium.chrome.ChromeDriver.<init>(ChromeDriver.java:123)
    at TesteAutomatizado.main(TesteAutomatizado.java:10)
3 respostas

Código:

import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver;

public class TesteAutomatizado {

public static void main(String[] args) {
    System.setProperty("webdriver.chrome.driver", "C:\\testes-de-sistemas\\lib\\chromedriver.exe");
    WebDriver driver = new ChromeDriver();

    driver.get("https://www.google.com.br");

    WebElement campoDeTexto = driver.findElement(By.name("q"));
    campoDeTexto.sendKeys("Caelum");

    campoDeTexto.submit();

}

}

Oi Jefferson

Exception in thread "main" java.lang.IllegalStateException: The driver executable does not exist: C:\testes-de-sistemas\lib\chromedriver.exe

Parece que o arquivo chromedriver.exe não está no diretório em questão.

Você baixou o driver do chrome e o colocou dentro da pasta "C:\testes-de-sistemas\lib\chromedriver.exe" ? O projeto não está localizando o arquivo "chromedriver". Se sim, poderia mandar um print da árvore de diretórios do eclipse mostrando onde está o chromedriver.exe?

Abraço!

Bom dia Otávio!

Sim, encontrasse dentro da pasta lib. Desculpe a pergunta, mas como faço pra encaminhar o print pelo fórum?