package br.gov.serpro.cte.email.listar; import org.junit.Test; import br.gov.serpro.cte.common.ExpressoMailTestCase; /** * @author L.F.Estivalet (Serpro) * * Created on Nov 17, 2010 at 9:27:58 AM * */ public class ApagarTodosEmailsTestCase extends ExpressoMailTestCase { @Test public void testaApagarTodosEmails() throws Exception { super.enterExpressoMail(); selenium.click(Campo.SELECIONAR_TODOS_EMAILS.getValue()); super.deleteEmail(); assertTrue(Mensagem.PASTA_VAZIA.getValue().equals( selenium.getText(Campo.MSG_INFO.getValue()))); } }