assertTrue(-1 != page.asText().indexOf("default value"));
// press the button to submit the literal value
List buttons = getAllElementsOfGivenClass(page, new ArrayList(),
HtmlSubmitInput.class);
page = (HtmlPage) ((HtmlSubmitInput)buttons.get(0)).click();
assertTrue(-1 != page.asText().indexOf("literal value"));
// press the button to submit the expression value
buttons = getAllElementsOfGivenClass(page, new ArrayList(),
HtmlSubmitInput.class);
page = (HtmlPage) ((HtmlSubmitInput)buttons.get(1)).click();