return elt instanceof HtmlHiddenInput;
}
protected void setField(final HtmlElement field) {
if (!(field instanceof HtmlInput)) {
throw new StepFailedException("Found " + field.getTagName() + " when looking for input", this);
}
((HtmlInput) field).setValueAttribute(getValue());
LOG.debug("Set hidden input field " + field + " to value " + getValue());
}