public void shouldSupportCookies() {
WebDriver htmlUnitDriver = new InProcessHtmlUnitDriver(httpAppTester);
htmlUnitDriver.manage().deleteAllCookies();
htmlUnitDriver.get("http://localhost/contacts/add");
htmlUnitDriver.findElement(By.name("contactName")).sendKeys("My Contact");
htmlUnitDriver.findElement(By.tagName("form")).submit();
assertThat(htmlUnitDriver.findElement(By.className("message")).getText(), is("Success"));
htmlUnitDriver.get("http://localhost/contacts/1");