Re: TestComplete v14. FindChild (dynamic) version of an XPath doesn't work in TC v14
OK... so... a couple of things.
1) Technically speaking, finding by "Name" is not exactly the recommended way of finding an object. You should be finding based upon a set of properties like ObjectType, ObjectIdentifier. It's not an "XPath", it's a set of properties. And, with the "Name" that you're using, as the message indicates, there are more than 1 object that matches what you're looking for. So... you need to search differently
2) Get rid of the concept of "XPath" for the most part with TestComplete... use "NameMapping" and learn it's usage. This is going to be, ultimately, more efficient and less error prone
3) TC 14 has had a number of performance improvements in object identification over previouse versions. It is possible that, in doing so, it's actually corrected some inefficiencies making the "FindChild" that you're using return more objects that intended.
So.... Now that we have that established.... the problem is, generally, that you haven't been specific enough in your search parmeters for the desired object. You need to use a more specific set of properties.