kaiiii
6 years agoRegular Contributor
CAll objects declared in another unit function
Hello,
I know, In Test Complete there no need to create objectRepository we can use Name Mapping in place of object repository.
but i have to create ObjectRepository, How can i call my objects
Like:
Unit A
Function AllObjects()
Set abc = ........Something here.......
Set bcd = ........Something here.......
Set cde = ........Something here.......
End Function
'USEUNIT A
Sub TestCase()
'here what should i do so that I can get objects
as i am trying A.Allobjects.
but after Allobjects proposals does'nt show objects in the function
how can i call the objects declared in another unit, function.
End Sub