public void student_should_be_able_to_access_stage_descritpion() { LoginPage.GoTo(); LoginPage.LoginAs(StudentUsername, StudentPassword); ApplyListStudentPage.GoTo(); ApplyListStudentPage.AccessStageDescription().Should().BeTrue(); }
public void student_should_see_RemoveApplyConfirmationPage_when_removing_an_apply() { LoginPage.GoTo(); LoginPage.LoginAs(StudentUsername, StudentPassword); ApplyListStudentPage.GoTo(); ApplyListStudentPage.ClickToRemove(); ApplyListStudentPage.ConfirmationRemoveIsDisplayed.Should().BeTrue(); }