尝试在 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中文网其他相关文章!