selenium.common.exceptions.WebDriverException: Message: 'msedgedriver' executable needs to be in PATH. Please download from https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
时间: 2023-12-13 16:03:00 浏览: 183
这个错误表示您需要将Microsoft Edge驱动程序添加到系统的PATH环境变量中。您可以按照以下步骤解决此问题:
1. 从Microsoft Edge开发人员工具网站(https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/)下载适用于您的操作系统和浏览器版本的Microsoft Edge驱动程序。
2. 将下载的驱动程序解压缩到您的计算机上,例如C:\WebDriver。
3. 打开系统的环境变量设置(可以通过在Windows搜索栏中搜索“环境变量”来找到)。
4. 在“系统变量”部分中找到“Path”变量,然后单击“编辑”按钮。
5. 在“编辑环境变量”对话框中,单击“新建”按钮,并将驱动程序的路径添加到列表中。例如,如果您将驱动程序解压缩到C:\WebDriver,则添加C:\WebDriver到列表中。
6. 单击“确定”按钮,并关闭所有打开的对话框。
7. 重新启动您的Python脚本,它现在应该能够找到Microsoft Edge驱动程序并成功运行了。
相关问题
selenium.common.exceptions.webdriverexception: message: 'msedgedriver' executable needs to be in path. please download from https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/
这个错误信息是说需要将'msedgedriver'可执行文件添加到环境变量中。你可以从https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/下载该文件。
selenium.common.exceptions.webdriverexception: message: 'chromedriver' executable needs to be in path. please see https://sites.google.com/a/chromium.org/chromedriver/home
这个错误消息表明,chromedriver可执行文件需要在路径中。请参考https://sites.google.com/a/chromium.org/chromedriver/home 以获取更多信息。
阅读全文