Forum Discussion
- YMinaev
Staff
Hi,
Native<X>Object namespaces contain native properties and methods of objects whose names coincide with those added by TC. Page elements have a 'name' property assigned in HTML code, and TC adds the 'Name' property to all objects. To avoid name conflicts, the native 'name' property is moved to the NativeWebObject namespace. - motorolaContributorWhat's the purpose of assigning wildcards in this property? let's say a form is given a nativedelphiobject.name frmLogin*. Can you show me where this wildcard in this property be used (in script or any other project components). thanks
- YMinaev
Staff
Hi,
Wildcards are usually used to ignore some parts of values. For example, when you want to exclude some dynamic parts of these values from recognition.
As for
, this depends on your setup and on whether you need to use wildcards at all. To use them, simply replace the part you need to ignore with *. There's no requirement to use wildcards, they are optional.where this wildcard in this property be used