package br.gov.serpro.cte.email.pastas; import org.junit.Test; import br.gov.serpro.cte.common.ExpressoMailTestCase; /** * @author L.F.Estivalet (Serpro) * * Created on Nov 17, 2010 at 9:40:23 AM * */ public class ApagarPastaTestCase extends ExpressoMailTestCase { @Test public void testaCriarPasta() throws Exception { super.enterExpressoMail(); selenium.click("//div[@id='menu_tools']/table/tbody/tr[4]/td"); selenium.click("lINBOX/Seleniumfolders_tree"); selenium.click("//input[@value='Excluir pasta']"); assertTrue(selenium.getConfirmation().matches( "^VocĂȘ gostaria de excluir a pasta: Selenium[\\s\\S]$")); } }