public void shouldSupportUtfEncodedData() {
WebDriver htmlUnitDriver = new InProcessHtmlUnitDriver(httpAppTester);
htmlUnitDriver.get("http://localhost/contacts/add");
WebElement contactNameElement = htmlUnitDriver.findElement(By.name("contactName"));
contactNameElement.clear();
contactNameElement.sendKeys("Имя Контакта");
htmlUnitDriver.findElement(By.tagName("form")).submit();
assertThat(htmlUnitDriver.findElement(By.name("contactName")).getAttribute("value"), is("Имя Контакта"));