解决办法
将下面的代码替换成新的即可完美解决
历史
entries = self.driver.execute_script("return window.performance.getEntries()")
更新后
entries = self.driver.execute_script("return window.performance.getEntriesByType('resource')")
解决办法
将下面的代码替换成新的即可完美解决
历史
entries = self.driver.execute_script("return window.performance.getEntries()")
更新后
entries = self.driver.execute_script("return window.performance.getEntriesByType('resource')")