Ejemplo n.º 1
0
        /// <summary>
        /// Clicks on the Test Name Link in the Row concerned from the View Portal Scheduled Tests Results Grid.
        /// </summary>
        /// <param name="rowIndex">Index of the Row concerned</param>
        public void SelectScheduledTestName(int rowIndex)
        {
            var viewPortalScheduledTestResultsRow = (ViewPortalScheduledTestResultsRow)ViewPortalScheduledTestResultsGrid.GetRowFromList(rowIndex);

            viewPortalScheduledTestResultsRow.SelectTestName();
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Gets the Test Name for the row concerned from the View Portal Scheduled Tests Results Grid.
        /// </summary>
        /// <param name="rowIndex">Index of the Row concerned</param>
        /// <returns>Name of the Test for the Row Concerned</returns>
        public string GetScheduledTestName(int rowIndex)
        {
            var viewPortalScheduledTestResultsRow = (ViewPortalScheduledTestResultsRow)ViewPortalScheduledTestResultsGrid.GetRowFromList(rowIndex);

            return(viewPortalScheduledTestResultsRow.GetTestName());
        }