return builder.build();
}
private static InputSpecification getInputSpecification() {
InputSpecification input = new InputSpecification();
input.field("textManual").setValue(MANUAL_INPUT_TEXT);
input.field("text2Manual").setValue(MANUAL_INPUT_TEXT2);
input.field("checkboxManual").setValue(MANUAL_INPUT_CHECKBOX);
input.field("radioManual").setValue(MANUAL_INPUT_RADIO);
input.field("selectManual").setValue(MANUAL_INPUT_SELECT);
input.field("textareaManual").setValue(MANUAL_INPUT_TEXTAREA);
Form form = new Form();
form.field("textMultiple").setValues(MULTIPLE_INPUT_TEXT);
form.field("text2Multiple").setValues(MULTIPLE_INPUT_TEXT2);
form.field("checkboxMultiple").setValues(MULTIPLE_INPUT_CHECKBOX);
form.field("radioMultiple").setValues(MULTIPLE_INPUT_RADIO);
form.field("selectMultiple").setValues(MULTIPLE_INPUT_SELECT);
form.field("textareaMultiple").setValues(MULTIPLE_INPUT_TEXTAREA);
input.setValuesInForm(form).beforeClickElement("a").withText("Submit Multiple");
return input;
}