Collections:
Create Function Library in UFT
How to create Function Library in UFT?
✍: FYIcenter.com
A UFT function library is just a VBScript source code file containing
user defined functions.
You can create function library using any text editor and save it as (.vbs) file.
Function library allows you to put VBScript functions that are needed for multiple tests to be centralized in a single file. For example, you can create a function library called: library.vbs with these functions:
Function CopyFile(SrcDir, DestDir, FileName) ... End Function Function DBConnect(byRef Session, ConnString) ... End Function
Then this function library file "library.vbs" can be loaded in any tests which need to use these functions.
⇒ Load Function Library in UFT Test
2018-01-24, ∼3369🔥, 0💬
Popular Posts:
How to generate test credit card numbers? Test credit card numbers are frequently needed in testing ...
How to generate user birthday dates? Test user birthday dates are frequently needed in testing appli...
How to generate test fractional numbers? Test fractional numbers are numbers with fractions that are...
How to convert a date and time to a standard format? Date and time can be displayed in a number of s...
How to perform regular expression pattern match with multiple occurrences? To perform a regular expr...