示例#1
0
        public void ValidarGuiaGerenciarProjetos()
        {
            #region Parameters
            string username         = "******";
            string password         = "******";
            string nomeProjeto      = "Projeto - " + GeneralHelpers.ReturnStringWithRandomNumbers(3);
            string descricaoProjeto = "Projeto criado através de execução automatizada " + GeneralHelpers.ReturnStringWithRandomCharacters(5);
            #endregion

            loginFlows.EfetuarLogin(username, password);
            homeMantisPage.ValidarTelaHome();
            gerenciarPage.ClicarMenuGerenciar();
            gerenciarProjetosPage.ClicarGuiaGerenciarProjetos();

            Assert.IsTrue(gerenciarProjetosPage.ValidarGuiaGerenciarProjetos().Contains("Projetos"));
        }