-1
Selenium Webdriver로 기본 테스트 코드를 실행하는 동안 IllegalStateException이 발생합니다.java.lang.IllegalStateException : 드라이버가 실행 가능하지 않습니다. - Selenium Webdriver
이 이클립스로 작성 내 코드입니다 :
{
...
System.setProperty("webdriver.ie.driver","<Absolutepath>/IEDriverServer.exe");
WebDriver driver=new InternetExplorerDriver(); //This is the line which throws the exception
...
}
예외 추적 다음 IEDriverServer.exe는 SeleniumHQ 다운로드 페이지에서 다운로드 내 시스템 (윈도우 10)에 배치 된
java.lang.IllegalStateException: The driver executable does not exist.
at com.google.common.base.Preconditions.checkState(Preconditions.java:518)
at org.openqa.selenium.remote.service.DriverService.checkExecutable(DriverService.java:123)
.
크롬 드라이버를 사용해도 같은 예외가 발생합니다.
비슷한 게시물을 읽었지만 문제를 해결할만한 것을 찾을 수 없습니다.
PATH에 절대 경로를 설정하지 않았습니다. chromedriver에 대해서도 같은 예외가 있습니다. – Elma