Created
July 4, 2012 14:55
-
-
Save mkaz/3047779 to your computer and use it in GitHub Desktop.
Use Selenium to Measure Web Timing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
""" | |
Use Selenium to Measure Web Timing | |
Performance Timing Events flow | |
navigationStart -> redirectStart -> redirectEnd -> fetchStart -> domainLookupStart -> domainLookupEnd | |
-> connectStart -> connectEnd -> requestStart -> responseStart -> responseEnd | |
-> domLoading -> domInteractive -> domContentLoaded -> domComplete -> loadEventStart -> loadEventEnd | |
""" | |
from selenium import webdriver | |
source = "http://www.babycenter.com/" | |
driver = webdriver.Chrome() | |
driver.get(source) | |
navigationStart = driver.execute_script("return window.performance.timing.navigationStart") | |
responseStart = driver.execute_script("return window.performance.timing.responseStart") | |
domComplete = driver.execute_script("return window.performance.timing.domComplete") | |
backendPerformance = responseStart - navigationStart | |
frontendPerformance = domComplete - responseStart | |
print "Back End: %s" % backendPerformance | |
print "Front End: %s" % frontendPerformance | |
driver.quit() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment