python+selenium打开浏览器开发者模式
Posted 千君君
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium打开浏览器开发者模式相关的知识,希望对你有一定的参考价值。
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument("--auto-open-devtools-for-tabs")
driver = webdriver.Chrome(chrome_options=options)
driver.maximize_window()
只有这种方法才能打开开发者模式,在这之前尝试用过
action = ActionChains(driver)
action.send_keys(Keys.F12).perform()
或者selenium下面的Keys模块,都不能实现
以上是关于python+selenium打开浏览器开发者模式的主要内容,如果未能解决你的问题,请参考以下文章
selenium+python自动化87-Chrome浏览器静默模式启动(headless)
如何在 Python 中使用 Selenium 打开 chrome 开发者控制台?
CentOS7下python3 selenium3 使用Chrome的无头浏览器 截取网页全屏图片