Forum Discussion
AlexKaras
8 years agoCommunity Hero
Hi,
baxatob is correct. This is one of the reasons of why XPath is not recommended approach in TestComplete world.
Object search and identification provided by TestComplete in 99% of cases is way fasted and more flexible than XPath.
In your case,
parent.Table('jdeGridData_*')
or, sometimes better
parent.WaitTable('jdeGridData_*', 10000)
should work.