Esempio n. 1
0
        public TableRowSe(IWebElement row)
            : base(row)
        {
            TableCellSeCollection theCells = new TableCellSeCollection(row, By.TagName("td"));

            foreach (var cell in theCells)
            {
                Cells.Add(new TableCellSe(cell));
            }
        }
Esempio n. 2
0
        private void InitializeCells()
        {
            TableCellSeCollection theCells = new TableCellSeCollection(WebElement, By.TagName("td"));

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

                Cells.Add(temp);
            }
        }