Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试获取页面加载时间。我正在使用带有 selenium 的 BrowserMob 代理来生成 HAR 文件,并使用 haralyzer 来读取 HAR 文件。详细信息和错误日志在这里,
请建议是否有任何其他方法可以实现这一目标。
您可以尝试requests用于此目的,如下所示:
requests
import requests requests.get('http://requiredURL.com').elapsed.total_seconds()
这将返回传递给加载所需页面的秒数