@Test
public void when_form_is_submitted_then_first_input_from_this_form_should_gain_focus() {
browser.get(contextPath.toExternalForm());
form2.submit();
Graphene.waitGui().until(new ElementIsFocused(form2.getInput2()));
form1.submit();
Graphene.waitGui().until(new ElementIsFocused(form1.getInput2()));
form3.submit();
Graphene.waitGui().until(new ElementIsFocused(form3.getInput1()));
}