使用remote-debugging-port连接edge浏览器
selenium 3版本使用方法
官方文档
1.edge为最新版浏览器,基于chromenium内核
使用命令行
msedge.exe --remote-debugging-port=9225 --user-data-dir="xxx"
端口号只要没有占用,可以随便设置
2. 脚本连接
from msedge.selenium_tools import Edge, EdgeOptions # pip install msedge-selenium-tools
edge_options = EdgeOptions()
edge_options.use_chromium =True
edge_options.add_argument("disable-gpu")
edge_options.add_experimental_option("debuggerAddress","127.0.0.1:9225")
driver = Edge(options=edge_options)
driver.get('edge://version/')
执行后打开该页面
温馨提示:必须加user-data-dir参数否则会失败
selenium 4版本使用方法
待完善
版权归原作者 花小田 所有, 如有侵权,请联系我们删除。