03-25-2010, 09:29 PM
If you are using checkpoints currently then you must have expected values in the field. Using If or Select statements to manually validate the cell and generate results should work.
Using the select to test for a result. If you want to just report the value then remove the select and just use the Reporter event. Hope this helps.
Code:
var_GetCellData = Browser("Browser").Page("...").WbfGrid("...GridV").GetCellData(2,5)
Select case _GetCellData
Case "A" 'this is an expected value
Reporter.ReportEvent micDone, "Cell Results", _GetCellData
Case else
Reporter.ReportEvent micDone, "Cell Results", "Cell is Empty
End Select
Using the select to test for a result. If you want to just report the value then remove the select and just use the Reporter event. Hope this helps.