While conducting automated tests with C#, Webdriver, and Chrome, I was exploring the use of the performance.timing.domComplete JavaScript console function through the chrome web developer tool. Here is an example of how I attempted to incorporate it into my testing script:
driver.ExecuteScript("performance.timing.domComplete"));
I believe that utilizing one of these timing values could be beneficial for implementing a Wait function or monitoring performance during test execution.