La implementacion de mis pruebas no ejecuta por pagina

Hola buen día,
necesito su ayuda

La implementación de mis pruebas debe ser modular para ello debe ejecutarse por pagina, pero no he logrado ejecutar varias páginas.

mi código para test es el siguiente:
package org.meto.appium.tests;

import java.lang.reflect.Method;
import org.meto.appium.base.TestBase;
import org.meto.appium.pages.FormCustomer;
import org.meto.appium.pages.FormPage;
import org.meto.appium.pages.FormProspect;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;

public class TFLogin extends TestBase {
FormPage formPage;
FormProspect formProspect;
FormCustomer formCustomer;

@BeforeMethod
public void beforeMethod(Method method) {

	formPage = new FormPage(driver);
	formProspect = new FormProspect(driver);
	formCustomer = new FormCustomer(driver);
	
}

@Test
public void FillForm() throws InterruptedException{
	formPage.setNameUser("xxxxxx");
	formPage.setNamePass("Passxx123");
	formPage.setSubmitLogin();
	formPage.setAgencySelection("TestOne");
	formPage.setRolSelection("Rol");
	formPage.setSubmitRol();
	formPage.setClaveLocal1("Test1234");
	formPage.setClaveConfLocal("Test1234");
	FormProspect formProspect = formPage.localButtom();
	
}

@Test
public void FillProspect() throws InterruptedException{
	FormProspect formProspect = new FormProspect(driver);
	formProspect.PropuestaButton();
	formProspect.ReturnButton();
	formProspect.PropuestaHome();
	formProspect.setNumDoc("09921741");
	formProspect.Verificando();
	formProspect.setFecCaducidad("01/01/2030");
	formProspect.setFirstName("TestFisrtname");
	formProspect.setSecondName("TestSecondName");
	formProspect.setSurName("Testlastname");
	formProspect.avance();
	formProspect.setSecondSureName("OtherLastName");
	formProspect.setFecNa("01/03/1991");
	formProspect.avance();
	
}


@Test
public void FillCustomer(){
	FormCustomer formCustomer = new FormCustomer(driver);
	formCustomer.CustomerP();
	formCustomer.fotoExperian();
	formCustomer.fotofrenteDni();
	formCustomer.fotoreversoDni();
	formCustomer.fotoCliente();
	formCustomer.swipeScreenOneCustomer();
	formCustomer.gradoInstruccion();
	formCustomer.profesionN();
	formCustomer.swipeScreenOneCustomer();
	formCustomer.swipeScreenOneCustomer();
	formCustomer.prePago();
	formCustomer.swipeScreenOneCustomer();
	formCustomer.codigoArea();
	
} 

}

solo ejecutar el test
FillForm()
FillProspect()

No inicia ejecución el test
FillCustomer()