指定的異常,「java.lang.IllegalStateException:驅動程式可執行檔案的路徑必須是由webdriver.chrome.driver 系統屬性設定”,表示Chrome 驅動程式可執行檔案路徑設定不正確。
要解決此問題,Chrome 驅動程式執行檔的路徑必須被準確地配置為系統屬性。具體來說:
System.setProperty("webdriver.chrome.driver", "C:\Users\sravani\Desktop\chromedriver.exe");
注意:可執行檔的名稱(driver.exe)應包含在路徑中,並且副檔名Windows系統應保留(.exe)。
以上是設定 Chrome 驅動程式路徑時如何解決「java.lang.IllegalStateException」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!