public void student_should_be_able_to_access_stage_descritpion()
        {
            LoginPage.GoTo();
            LoginPage.LoginAs(StudentUsername, StudentPassword);

            StageListStudentPage.GoTo();

            StageListStudentPage.AccessStageDescription().Should().BeTrue();
        }
        public void student_home_page_should_not_display_stages_if_not_logged_in()
        {
            StageListStudentPage.GoToByUrl();

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