public void coordinator_creatList_should_redirect_on_resultCreateList()
        {
            LoginPage.GoTo();
            LoginPage.LoginAs(CoordonatorUsername, CoordonatorPassword);
            AddStudentsCoordinatorPage.GoTo();
            AddStudentsCoordinatorPage.SelectCsvFile("C:\\dev\\abc.csv");

            CreateListStudentsCoordinatorPage.ClickToCreatelist();

            ResultatCreateListStudentPage.IsDisplayed.Should().BeTrue();
        }
        public void coordinator_not_should_be_able_to_see_the_page_resultCreateList_student_not_if_logged_in()
        {
            CreateListStudentsCoordinatorPage.GoToByUrl();

            LoginPage.IsDisplayed.Should().BeTrue();
        }