예제 #1
0
        public void EntrarNaPaginadeGerencia()
        {
            gerenciaFlows     = new GerenciaFlows();
            gerenciarProjetos = new GerenciarProjetos();

            gerenciaFlows.EntrarNaPaginaDeGerencia("Larissa Bicalho's Project");


            Assert.AreEqual("Informação do Site", gerenciarProjetos.VerificarTelaGerenciar());
        }
예제 #2
0
        public void AdicionarCategoria()
        {
            gerenciaFlows            = new GerenciaFlows();
            gerenciarTodosOsProjetos = new GerenciarTodososProjetosPage();

            string categoria = "TesteLarissa" + GeneralHelpers.ReturnStringWithRandomCharacters(3);

            gerenciaFlows.EntrarNaPaginaDeGerencia("Todos os Projetos");
            gerenciarTodosOsProjetos.AdicionarCategoria(categoria);

            Assert.IsTrue(gerenciarTodosOsProjetos.AcharCategoriaSelecionada(categoria));
        }