startLocalProxy();
System.setProperty("http.proxyHost", "localhost");
System.setProperty("http.proxyPort", "" + proxyPort);
driver.addExpectation(new ClientDriverRequest("/foo"), new ClientDriverResponse("Content", "text/plain"));
get(driver.getBaseUrl() + "/foo", usingSystemProxy());
assertThat(proxyHits, is(1));
}