UFT VBS Two functions with the same name as specifying which one

I have a function DetermineTree()in the function library with the name Explorer.vbsand another function with the same name,, DetermineTree()in Datasheets.vbs. From my action, I call a function that will eventually call DetermineTree(). I want to indicate what I want to call DetermineTree()from Explorer.vbsNOT the one fromDatasheets.vbs

I understand that if I change the order associated with the libraries, it will solve the problem, but I am looking for a code fix for this problem.

in C # I think you can specify the use of dot notation, for example. Explorer.DetermineTree ()

+4
source share
2 answers

, , ( ).

AFAIK VBScript "", script , . .

, LoadFunctionLibrary , , .

+3

, , () - , UFT 12.02?

0

Source: https://habr.com/ru/post/1680144/


All Articles