Hi James,
There is an
HTML Table checkpoint . However, it allows comparing only html tables. As your task is to compare an Excel table with an HTML table, you will need to create your own comparison procedure that will compare data in each cell. As Ryan suggested, you can use the DDT feature to get access to Excel's cells. The pseudocode may look like this:
foreach cell in a table
var excelCell = get value from Excel via DDT.ExcelDriver
var webCell = get value from Web table. Explore TestComplete's Object Browser for this
if (excelCell == webCell)
Log.Message ("The cells are the same")