-1
嘗試使用Selenium Webdriver運行基本測試代碼時,出現IllegalStateException。java.lang.IllegalStateException:驅動程序可執行文件不存在 - Selenium Webdriver
這是我寫的代碼在Eclipse:
{
...
System.setProperty("webdriver.ie.driver","<Absolutepath>/IEDriverServer.exe");
WebDriver driver=new InternetExplorerDriver(); //This is the line which throws the exception
...
}
異常跟蹤:
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)
的IEDriverServer.exe已從SeleniumHQ下載頁面下載並把我的系統(Windows 10)上。
當我嘗試Chrome驅動程序時也發生同樣的異常。
我已經通過類似的帖子,但找不到解決問題的東西。
在PATH中設置絕對路徑沒有幫助。對於鍍鉻汽油也同樣例外。 – Elma