public TableRowSe(IWebElement row, string rowTag)
     : base(row)
 {
     TableCellSeCollection theCells = new TableCellSeCollection(row, By.TagName(rowTag));
     foreach (var cell in theCells)
     {
         Cells.Add(new TableCellSe(cell));
     }
 }
        private void InitializeCells()
        {
            TableCellSeCollection theCells = new TableCellSeCollection(WebElement, By.TagName("td"));

            foreach (var cell in theCells)
            {
                TableCellSe temp = new TableCellSe(cell);

                Cells.Add(temp);
            }
        }