one suggestion is you could extend, say, HtmlUnitDriver, and overload
the get() method as such:
public void get(String url) {
long start = System.currentTimeMillis();
super.get(url);
long end = System.currentTimeMillis();
long duration = end - start;
LOGGER.INFO("Page took " + duration + " ms to load");
}
hth,
-j