Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.
What is the difference between script and compile module?
b. WinRunner performs a pre-compilation automatically when it saves a module assigned a property value of “Compiled Module”.
c. By default, modules containing TSL code have a property value of "main". Main modules are called for execution from within other modules. Main modules are dynamically compiled into machine code only when WinRunner recognizes a "call" statement. Example of a call for the "app_init" script:
call cso_init();
call( "C:\MyAppFolder\" & "app_init" );
d. Compiled modules are loaded into memory to be referenced from TSL code in any module. Example of a load statement:
reload (“C:\MyAppFolder\" & "flt_lib");
or
load ("C:\MyAppFolder\" & "flt_lib");
Related Answered Questions
Related Open Questions