* @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.");
}