05-10-2013, 11:19 AM
I am trying to retrieve values of cells from a webtable using GetCellData() method but it returns hidden values of cells also.
Is there any method to get only visible values of a Web Table.
Thanks in advance
Is there any method to get only visible values of a Web Table.
Code:
RwCount=Browser("xyz").Page("abc").WebTable("table1").RowCount
For i=1 to RwCount
ColCount=Browser("xyz").Page("abc").WebTable("table1").ColumnCount(i)
For j=1 to ColCount
iValue=Browser("xyz").Page("abc").WebTable("table1").GetCellData(i,j)
Print iValue
Next
Next