「Webdrivers」執行檔可能有錯誤的權限:解決WebDriverException
「WebDriverException:訊息:「Webdrivers」具有錯誤的權限」錯誤表示您嘗試使用的ChromeDriver 可執行檔案具有不正確的權限。
原因:
當 ChromeDriver 可執行檔案沒有運作所需的權限時,會出現此錯誤適當地。這可能是由於安裝不正確或配置不當造成的。
解決方案:
要解決此問題,請按照以下步驟操作:
對於Windows 用戶:
對於Linux用戶:
對於macOS 使用者:
更新的程式碼:
對於Windows:
<code class="python">driver = webdriver.Chrome(executable_path=r'C:/path/to/chromedriver.exe')</code>
對Linux:
<code class="python">driver = webdriver.Chrome(executable_path='/path/to/chromedriver')</code>
對macOS:
<code class="python">driver = webdriver.Chrome(executable_path='/path/to/chromedriver')</code>
以上是為什麼我會收到「WebDriverException:訊息:『Webdrivers』可執行檔案可能具有錯誤的權限」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!