Esempio n. 1
0
        /// <summary>
        /// Finds the Row containing the subject from the View Portal Scheduled Tests Results Grid.
        /// </summary>
        /// <param name="subject">subject of the test to be found</param>
        public ViewPortalScheduledTestResultsRow FindScheduledTestRowUsingSubjectColumn(string subject)
        {
            var viewPortalScheduledTestResultsRow = ViewPortalScheduledTestResultsGrid.GetsFirstRowContainingTextToFindFromList("Subject", subject);

            return(viewPortalScheduledTestResultsRow);
        }
Esempio n. 2
0
        /// <summary>
        /// Finds the Row containing the grade level range from the View Portal Scheduled Tests Results Grid.
        /// </summary>
        /// <param name="gradeLevelRange">grade level range of the test to be found</param>
        public ViewPortalScheduledTestResultsRow FindScheduledTestRowUsingGradeLevelColumn(string gradeLevelRange)
        {
            var viewPortalScheduledTestResultsRow = ViewPortalScheduledTestResultsGrid.GetsFirstRowContainingTextToFindFromList("Grade Level", gradeLevelRange);

            return(viewPortalScheduledTestResultsRow);
        }
Esempio n. 3
0
        /// <summary>
        /// Finds the Row containing the testName from the View Portal Scheduled Tests Results Grid.
        /// </summary>
        /// <param name="testName">test name of the test to be found</param>
        public ViewPortalScheduledTestResultsRow FindScheduledTestRowUsingTestNameColumn(string testName)
        {
            var viewPortalScheduledTestResultsRow = ViewPortalScheduledTestResultsGrid.GetsFirstRowContainingTextToFindFromList("Test Name", testName);

            return(viewPortalScheduledTestResultsRow);
        }