What does auto, static, public and extern variables means?
Auto: an auto variable can be declared only within a function and is local to that function. It exists only for as long as the function is running. A new copy of the variable is created each time the function is called. B. Static: a static variable is local to the function, test, or compiled module...
The const specifier indicates that the declared value cannot be modified. The class of a constant may be EIther public or static. If no class is explicitly declared, the constant is assigned the default class public. Once a constant is defined, it remains in existence until you exit winrunner....
How do you load and unload a compile module?
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 until you quit winrunner or unload the compiled module. B. You can load a module EIther as...
Why should we create framework?
What is the difference between winrunner 7.0 version and winrunner 7.5 version.