赞
踩
pip install selenium
安装浏览器驱动时注意版本保持一致。
查看浏览器版本:
在这个网站上下载驱动:https://developer.microsoft.com/zh-cn/microsoft-edge/tools/webdriver/。
上图中看到我的Edge版本是 120.0.2210.61。进入网站下载驱动。
将其解压到python解释器目录并重命名为MicrosoftWebDriver.exe
。
将压缩包解压到一个指定路径下。比如 D:/util
路径。访问百度,看看能否正常打开。
import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.edge.service import Service
browser = webdriver.Edge()
browser.get("http://www.baidu.com")
time.sleep(10)
成功运行~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。