int indexValue) {
return getFormInput(browser, element, indexValue);
}
private FormInput getFormInput(EmbeddedBrowser browser, Node element, int indexValue) {
Identification identification;
try {
identification = getIdentification(element);
if (identification == null) {
return null;
}
} catch (Exception e) {
return null;
}
// CHECK
String id = fieldMatches(identification.getValue());
FormInput input = new FormInput();
input.setType(getElementType(element));
input.setIdentification(identification);
Set<InputValue> values = new HashSet<InputValue>();