BrowserAPI.bdh
BrowserSetIEMode( nMode : in number ): boolean;
Parameter | Description |
---|---|
nMode | The IE mode used for the browser-driven Web
load testing feature. The following values may be used:
|
true if successful
false otherwise
benchmark SilkPerformerRecorder use "Kernel.bdh" use "BrowserAPI.bdh" dcluser user VUser transactions TInit : begin; TMain : 1; var dclrand dcltrans transaction TInit begin end TInit; transaction TMain var ieMode : number; begin BrowserSetIEMode(BROWSER_IE7_MODE); BrowserStart(BROWSER_MODE_DEFAULT, 800, 600); // retrieve the IE mode and store it into a variable (ieMode) ieMode:= BrowserGetIEMode(); // print out the ieMode print(string(ieMode)); end TMain;