StAutomation.bdh
StInit( uBrowserType : in number optional := BROWSER_TYPE_DEFAULT ): boolean;
true if successful
false otherwise
| Parameter | Description |
|---|---|
| uBrowserType |
Optional: Sets the browser type. Possible values are:
|
dcltrans
transaction TInit
begin
StInit();
end TInit;
transaction TTest
begin
StLoadProject("package.stp");
StSetOption(ST_OPTION_TRUELOG_OPTIONS,ST_TRUELOG_ALL);
StExecuteTestcase("scriptFile.t", "testcase", "\" testdata\",10", "MyTimer1");
StLogoffSession();
end TTest;