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, 2137👍, 0💬
Popular Posts:
How to set Content-Type to application/json? The server requires the Content-Type to be application/...
Where to find online test tools? FYIcenter.com has prepared a number of online test tools: Data Look...
How to generate email addresses? To help you to obtain some email addresses for testing purpose, FYI...
How to call JMeter command in a Windows batch file? I want to create a single batch job to run JMete...
How to generate user full names? Test user names are frequently needed in testing applications that ...