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, 3291🔥, 0💬
Popular Posts:
How to generate currency test values? Currency test values are frequently needed in testing date and...
How to find out my browser request headers? To help you to see your browser request headers, FYIcent...
How to turn off HTTP response compression in SoapUI? HTTP response compression reduces the data size...
Where to find tutorials on Selenium test tools? I want to know how to use Selenium. Here is a large ...
How to convert hexadecimal encoded data back to binary data (or Hex to Binary Decoding)? Hex to Bina...