public void CampoDescricaoNaoPreenchido() { #region Parameters string usuario = "administrator"; string senha = "administrator"; string categoria = "General"; string resumo = "teste automatizado resumo"; #endregion loginFlows.EfetuarLogin(usuario, senha); criarTarefaPage.AcessarCadastroTarefa(); criarTarefaPage.PreencherCategoriaTarefa("[Todos os Projetos] " + categoria); criarTarefaPage.PreencherResumoTarefa(resumo); criarTarefaPage.ClicarCadastrarTarefa(); CollectionAssert.Contains(new[] { mensagemEsperadaCampoObrigatorioChromeFirefoxLocal, mensagemEsperadaCampoObrigatorioIELocal, mensagemEsperadaCampoObrigatorioChromeRemota }, criarTarefaPage.RetornaMensagemObrigatoriedadeDescricao()); }
public void PreencherCamposObrigatorios(string categoria, string resumo, string descricao) { criarTarefaPage.PreencherCategoriaTarefa("[Todos os Projetos] " + categoria); criarTarefaPage.PreencherResumoTarefa(resumo); criarTarefaPage.PreencherDescricaoTarefa(descricao); }