package br.gov.serpro.cte.email.compor; import org.junit.Test; import br.gov.serpro.cte.common.ExpressoMailTestCase; /** * @author L.F.Estivalet (Serpro) * * Created on Nov 16, 2010 at 3:36:32 PM * */ public class EnviarEmailConfirmacaoLeituraTestCase extends ExpressoMailTestCase { @Test public void testa() throws Exception { super.composeEmail(getValor("email.teste.1"), getValor("assunto.confirmacao.leitura"), getValor("texto.email.confirmacao.leitura")); selenium.click(getCampo("email.confirmacao.leitura")); super.sendEmail(); super.assertMessage(getCampo("email.mensagem"), getMensagem("email.enviado")); // Remove email da Caixa de Entrada, itens enviados e lixeira. super.removeEmail(getValor("assunto.confirmacao.leitura")); } }