Hi Preetha,
The best way to handel this would be dont use table checkpoint rather use combination If Else and For Next as below,
For Ex:
Regards,
Raghav
The best way to handel this would be dont use table checkpoint rather use combination If Else and For Next as below,
For Ex:
Code:
rowcount=Browser().Page().Frame().WebTable().GetRowCount
colcount=Browser().Page().Frame().WebTable().GetColumnCount
For i=1 to rowcount
For j=1 to colcount
arr=Browser().Page().Frame().WebTable().GetCellData(rowcount,colcount)
If arr=expectedvalue then
Reporter.reportevent micPass,"",""
Else
Reporter.reportevent micFail,"",""
End If
Regards,
Raghav