Returns the current IE mode, which is set in the registry for the browser-driven Web load testing feature.
BrowserAPI.bdh
BrowserGetIEMode(): number;
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
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;