TestComplete detects the table control itself, but none of the internal row/cell objects are exposed
I have a table-like control similar to the one in the screenshot.
Using "Add Object" in TestComplete, I can capture the main table object. (object: Aliases.Icad.dlgAECStylesManager.Item.SysListView32)
However, when I explore it in the Object Browser, the table exposes only one child object — the header.
There are no row objects, no cell objects, and no data nodes visible under the table.
Because of this, TestComplete cannot interact with the table using the normal object model (such as row/cell access, FindChild, ClickCell, etc.).
My goal is to automate editing based on the row index.
For example:
Update the “Name” column for the row where Index = 101 (change it to "Testing1").
Has anyone encountered this type of control or found a reliable solution for automating tables that do not expose row/cell objects?
Any suggestions would be greatly appreciated.
Thanks!