Forum Discussion
torus
23 days agoFrequent Contributor
If you can't find any way to actually access the table object, you can always use the OCR table recognize feature:
function OCR_Table(tableObject, hasHeader = true)
{
// -- OCRTable Object ---
// Specify the preferable search area
var searchPref = spNone;
// Recognize the table content
var table = OCR.Recognize(tableObject).DetectTable(searchPref, hasHeader);
return table;
}
You can find more about this at the following link: TestComplete - Detect Table