python3+selenium如何获取页面的加载时间或者时间戳
##获取页面加载时间url='http://192.168.1.199/'
x=webdriver.Chrome()
x.get(url)
x.find_element(By.ID,'username').send_keys('su')
x.find_element(By.ID,'password').send_keys('123456')
x.find_element(By.XPATH,'//*[@id="login"]/div/input').click()我的解答思路和尝试过的方法试过用loadEventTime这个方法 但是报错我想要达到的结果加载完页面可以获取一个加载页面的时间用来输出
使用window.performance.timing这个对象试试呢。 自己写个变量吧 等大神来 循环尝试
页:
[1]