/// <summary> /// Returns the element cell. /// </summary> /// <param name="row"></param> /// <param name="col"></param> /// <returns></returns> public virtual IWebElement GetCell(int row, int col) { return(RowElements .ElementAt(row) .FindElements(cellsSelector) .ElementAt(col)); }
/// <summary> /// Gets the row. /// </summary> /// <param name="row">The row.</param> /// <returns></returns> public virtual IWebElement GetRow(int row) { return(RowElements.ElementAt(row)); }