我需要使用硒监视Chrome中的页面请求。我添加了以下配置:
caps = DesiredCapabilities.CHROME
caps['loggingPrefs'] = {'performance': 'ALL'}
要获取我正在使用的日志:
self.get_webdriver_instance().get_log("performance")
但是当我需要等待一些事件(例如50个日志)并循环调用.get_log时,第二次调用返回空列表:
self.get_webdriver_instance().get_log("performance") - returns logs
self.get_webdriver_instance().get_log("performance") - returns nothing(if any new requests)
这是预期的行为吗?调用get_log是否会影响日志?