解决办法
将下面的代码替换成新的即可完美解决
历史
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')")