最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

selenium+Python+Chrome打开浏览器开发者模式

运维笔记admin1浏览0评论
from selenium import webdriver # 要想使用selenium的webdriver 里的函数,首先把包导进来哈

#打开浏览器开发者模式
options = webdriver.ChromeOptions()
options.add_argument("--auto-open-devtools-for-tabs")
driver = webdriver.Chrome(chrome_options=options)

#进入百度页面
driver.get('https://www.baidu/')

结果:

发布评论

评论列表(0)

  1. 暂无评论