public void testTextAreaIsNotAffectedByOpenFacesValidation() throws Exception {
testAppFunctionalPage("/requests/JSFC_2257.jsf");
ElementInspector dmf = element("dfm0");
dmf.assertElementExists(false);
TextAreaInspector textArea = new TextAreaInspector("fm:ta");
textArea.type("Some text");
ElementInspector button = element("fm:bt");
button.clickAndWait();
textArea.assertValue("Some text");
for (int i = 0; i < "Some text".length(); i++)
textArea.keyPress(Keys.BACK_SPACE);
// textArea.type("");
dmf.assertElementExists(false);
button.click();
dmf.assertElementExists(true);
}