@Override
 public void setUp() throws Exception {
   super.setUp();
   loginPage.login();
   solo.waitForText("Login Successful");
   waitUntilTextDisappears("Login Successful");
   childPage.navigateToRegisterPage();
 }
 @Override
 public void setUp() throws Exception {
   super.setUp();
   loginPage.login();
   Assert.assertTrue(solo.waitForText("Login Successful"));
   waitUntilTextDisappears("Login Successful");
   repository =
       RapidFtrApplication.getApplicationInstance()
           .getInjector()
           .getInstance(EnquiryRepository.class);
   childRepository =
       RapidFtrApplication.getApplicationInstance()
           .getInjector()
           .getInstance(ChildRepository.class);
 }
 @Override
 public void setUp() throws Exception {
   super.setUp();
   loginPage.login();
   viewAllChildrenPage.navigateToViewAllPage();
 }
 @Override
 public void setUp() throws Exception {
   super.setUp();
   loginPage.login();
   solo.waitForText("Login Successful");
   waitUntilTextDisappears("Login Successful");
   enquiryPage.navigateToCreatePage();
   addFormSection(
       "Enquirer Details",
       "Name",
       "Sex",
       "Date of birth",
       "Place of birth",
       "Address",
       "Telephone number",
       "Ethnic group/tribe",
       "Nationality",
       "Relationship to child",
       "Message for the child");
   addFormSection(
       "Child Details",
       "Name",
       "Also known as(nickname)",
       "Sex",
       "Date of birth/age",
       "Languages spoken",
       "Nationality",
       "Ethnic group/tribe",
       "Distinguishing physical characteristics");
   addFormSection(
       "Family Details",
       "Father's name",
       "Is father alive?",
       "If father dead, please provide details",
       "Mother's name",
       "Is mother alive?",
       "If mother dead please provide details",
       "Address of child before separation");
   addFormSection(
       "Siblings Details",
       "1) Name of sibling or other child accompanying the child",
       "Relationship",
       "Date of birth",
       "Place of birth",
       "Current address",
       "Telephone",
       "2) Name of sibling or other child accompanying the child",
       "Relationship",
       "Date of birth",
       "Place of birth",
       "Current address",
       "Telephone",
       "3) Name of sibling or other child accompanying the child",
       "Relationship",
       "Date of birth",
       "Place of birth",
       "Current address",
       "Telephone");
   addFormSection(
       "Separation History",
       "Date of separation",
       "Place of separation",
       "Circumstances of separation");
   addFormSection("Tracing Information", "Latest news received");
 }
 @Override
 public void setUp() throws Exception {
   super.setUp();
   loginPage.login();
   solo.waitForText("Login Successful");
 }
 @Override
 public void tearDown() throws Exception {
   loginPage.logout();
   super.tearDown();
 }
 @Override
 public void tearDown() throws Exception {
   super.tearDown();
 }