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