在浏览器中查找 API 命中数和资源下载大小
Finding the API hit count and resource downloaded size in browser
有什么方法可以获取 API 被点击的次数以及页面加载时浏览器下载的数据量?
我喜欢使用 Python
获取下载的数据量和计数
也许Selenium can help you with this. There is a post in which the use Selenium to get the network requests:
是的。您可以导出 HAR file from your favorite browser 并通过 python 进行分析。 HAR 只是一个 JSON 文件,因此您可以执行一个脚本来查找您感兴趣的数据。
有什么方法可以获取 API 被点击的次数以及页面加载时浏览器下载的数据量?
我喜欢使用 Python
获取下载的数据量和计数也许Selenium can help you with this. There is a post in which the use Selenium to get the network requests:
是的。您可以导出 HAR file from your favorite browser 并通过 python 进行分析。 HAR 只是一个 JSON 文件,因此您可以执行一个脚本来查找您感兴趣的数据。