0
点赞
收藏
分享

微信扫一扫

python selenium得到network列表案例

爱动漫建模 2022-03-30 阅读 81
python
"""
# 文件说明 :
# @Time :  2022-3-27 13:16
# @Author : hewuhun
# @File : selenium得到network列表.py 
# @Software : python
"""
# !/usr/bin/python
# -*- coding: utf-8 -*-
from selenium.webdriver import Chrome, DesiredCapabilities
from selenium.webdriver.chrome.options import Options

if __name__ == '__main__':
    d = DesiredCapabilities.CHROME
    d['goog:loggingPrefs'] = {'performance': 'ALL'}
    chrome_options = Options()
    chrome_options.add_argument(
        'User-Agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.74 Safari/537.36 Edg/99.0.1150.46')

    driver = Chrome(options=chrome_options, desired_capabilities=d)
    driver.get('https://www.baidu.com')
    for item in driver.get_log('performance'):
        print(item)
举报

相关推荐

0 条评论