public void SetUp()
        {
            TableRows rows = table.Rows;

            row = rows[0];
            row.Cells[0].Value = "Imran";
        }
Example #2
0
        public void TableRows()
        {
            table.LogStructure();
            TableRows tableRows = table.Rows;

            Assert.AreEqual(true, tableRows.Count >= 13, tableRows.Count.ToString());
        }
Example #3
0
        public void SelectRowNotVisibleInitially()
        {
            TableRows rows = table.Rows;
            TableRow  row  = rows[rows.Count - 1];

            row.Select();
            Assert.AreEqual(false, row.IsOffScreen);
            row = rows[0];
            Assert.AreEqual(true, row.IsOffScreen);
            row.Select();
            Assert.AreEqual(false, row.IsOffScreen);
        }
Example #4
0
 public virtual void Refresh()
 {
     rows = null;
 }