Examples of menuUsuarioVisivel()


Examples of br.com.pixeon.pages.Header.menuUsuarioVisivel()

    Login lp = new Login();
    Header h = new Header();
    lp.inserirLogin("99999999999");
    lp.inserirSenha("123");
    lp.pressionarBotaoEntrar();
    Assert.assertTrue(h.menuUsuarioVisivel());
  }
 
  /**
   * Realiza a seleção da clínica; Complementa o teste de login do usuário.
   * @throws InterruptedException
View Full Code Here

Examples of br.com.pixeon.pages.Header.menuUsuarioVisivel()

   * @throws InterruptedException
   */
  @Test (groups = {"header2"}, dependsOnGroups ={"C"})
  public void selecionarClinicaUsuario(){
    Header header = new Header();
    if(header.menuUsuarioVisivel()){
      header.selecionarClinica("DR. JOELHO'S CLINIC");
      Assert.assertEquals(header.retornaNomeClinicaAtual(), "DR. JOELHO'S CLINIC");
    } else
      Assert.fail("ERRO: Não foi possível selecionar a clínica do usuário.");   
  }
View Full Code Here

Examples of br.com.pixeon.pages.Header.menuUsuarioVisivel()

  public void loginSucesso() throws InterruptedException{
    lp.inserirLogin("99999999999");
    lp.inserirSenha("123");
    lp.pressionarBotaoEntrar();
    Header h = new Header();
    Assert.assertTrue(h.menuUsuarioVisivel());
  }
 
}
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.