예제 #1
0
        public void coordinator_should_be_able_to_see_StudentList_with_students_and_access_student_apply_detail()
        {
            LoginPage.GoTo();
            LoginPage.LoginAs(CoordonatorUsername, CoordonatorPassword);

            StudentListCoordinatorPage.GoTo();

            StudentListCoordinatorPage.CountNbStudents().Should().NotBe(0);
            StudentListCoordinatorPage.AccessStudent1ApplyList().Should().BeTrue();
        }
예제 #2
0
        public void coordinator_should_not_be_able_to_access_StudentList_page_if_not_logged_in()
        {
            StudentListCoordinatorPage.GoToByUrl();

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