Пример #1
0
        public void coordinator_should_be_able_to_see_StudentApplyList_with_students()
        {
            LoginPage.GoTo();
            LoginPage.LoginAs(CoordonatorUsername, CoordonatorPassword);

            StudentApplyListCoordinatorPage.GoTo();

            StudentApplyListCoordinatorPage.CountNbApplies().Should().NotBe(0);
        }
Пример #2
0
        public void coordinator_should_not_be_able_to_access_StudentApplyList_page_if_not_logged_in()
        {
            StudentApplyListCoordinatorPage.GoToByUrl();

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