嘗試在Python 中使用Selenium 時,您可能會遇到錯誤訊息:
WebDriverException: Message: 'Webdrivers' executable may have wrong permissions. Please see https://sites.google.com/a/chromium.org/chromedriver/home
此錯誤表示ChromeDriver 可執行檔案的檔案權限不正確。
此錯誤的解決方案取決於您的作業系統:
Windows:
<code class="python">driver = webdriver.Chrome(executable_path=r'C:\path\to\chromedriver.exe')</code>
Linux 與macOS:
<code class="python">driver = webdriver.Chrome(executable_path='/path/to/chromedriver')</code>
附加說明:
以上是為什麼 Selenium 會拋出「WebDriverException:訊息:『Webdrivers』可執行檔可能有錯誤的權限」錯誤?的詳細內容。更多資訊請關注PHP中文網其他相關文章!