Add-Ins are used in WinRunner to load functions specific to the particular add-in to the memory. While creating a script only those functions in the addin selected will be listed in the function generator
Latest Answer : In order to recognize the object properties to platform which it depends the WinRunner Add-Ins were used..For example when the application runs only on VB then VB Add-Ins would be selected otherwise it will display error message as it does not recognize ...
We can load a GUI Map by using the GUI_load command. Syntax: GUI_load();
Latest Answer : we can load gui map in two waysa)by using gui_load functionb)using map editorin this method first open map editor and go to file menu and click on open.it will display gui map files.click on open .then the gui file will be loaded.the letter L before ...
When we load a GUI Map file, the information about the windows and the objects with their logical names and physical description are loaded into memory. So when the WinRunner executes a script on a
While recording a script, WinRunner learns objects and windows by itself. This is actually stored into the temporary GUI Map file. We can specify whether we have to load this temporary GUI Map file
Latest Answer : It will use for only for that test it will not call back un less we save it ...
A compiled module is a script containing a library of user-defined functions that you want to call frequently from other tests. When you load a compiled module, its functions are automatically compiled
Test script contains the executable file in WinRunner while Compiled Module is used to store reusable functions. Complied modules are not executable. b. WinRunner performs a pre-compilation automatically
Latest Answer : Script is a Executable File whereas Compile Module is used to store the Resuable Functions & it is not Executable. ...
In order to access the functions in a compiled module you need to load the module. You can load it from within any test script using the load command; all tests will then be able to access the function
If you make changes in a module, you should reload it. The reload function removes a loaded module from memory and reloads it (combining the functions of unload and load). The syntax of the reload function
Latest Answer : The reload function removes a compiled module from memory, and then loads it again. In effect, reload combines the functions of unload and load.When you reload a module you can define the module type. The compiled module types are system and user. ...
Latest Answer : load_dll(path name); unload_dll(path name); ...
Latest Answer : load,reload,unload 3 steps ...