Please find below code as it gives error 'object requred' on
If (aqString["ToUpper"](strCellValue) == aqString["ToUpper"](StrVal)) line.
function tableClick(){
ObjTable = mGetObject(sGlobalPageURL,"ObjectType,Name","Table,Table*list_product_group_table*")
intRows = ObjTable.RowCount
strCellValue = "TAA - Test Automation Account"
for (i = 1; i < intRows; i++) {
StrVal = ObjTable.Cell(i,0).innerText
If (aqString["ToUpper"](strCellValue) == aqString["ToUpper"](StrVal))
{
ObjTable.Cell(i,3).click()
break;
}
}
}
if (aqString["Compare"](strCellValue, StrVal, true) == 0)