1、下载对应版本的驱动程序:
https://developer.microsoft.com/zh-cn/microsoft-edge/tools/webdriver/
2、和系统版本对应的exe文件(x86、x64要对应)放置的固定的目录,我放到了system32下了;
3、PATH路径添加windows/system32目录;
4、确认安装的selenium的版本要在4.0以上,否则的话不能正常调用;
pip install selenium==4.4.3
5、运行,即可正常调用Edge,并访问百度;
python
from selenium import webdriver
driver = webdriver.Edge()
driver.get('https://www.baidu.com')