排查ChromeDriver 的「java.lang.IllegalStateException」錯誤
問題:
問題:java.lang.IllegalStateException: The path to the driver executable must be set by the webdriver.chrome.driver system property原因:
當系統屬性「webdriver」時發生此錯誤.chrome.driver」未正確設定為指向ChromeDriver 執行檔的位置。解決方案:
要解決此問題,請修改程式碼如下:<code class="java">System.setProperty("webdriver.chrome.driver", "C:\Users\sravani\Desktop\chromedriver.exe");</code>
「webdriver.chrome.driver」系統屬性名稱必須以小寫字母開頭。路徑,包括Windows 系統的副檔名「.exe」。
以上是如何解決 ChromeDriver 的「java.lang.IllegalStateException」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!