-
selenium 的安装
python -m pip --default-timeout=100 install selenium -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
-
Microsoft edge driver 的安装
下载地址: 微软边缘 - 网络驱动程序 (windows.net)
from selenium.webdriver import Edge # 1.创建浏览器对象 web = Edge() # 2. 打开一个网址 web.get("https://www.baidu.com") # 3. 得到标题 print(web.title)
标签:web,python,selenium,driver,edge,测试工具,Microsoft From: https://www.cnblogs.com/slowlydance2me/p/16841357.html