The SilkKDTSetThinkTime function sets the think times used between the keyword executions.
SilkTest.bdh
SilkKDTSetThinkTime( sTime : in double ): boolean;
true if successful
false otherwise
| Parameter | Description |
|---|---|
| sTime | The think time used between keyword executions. |
dcltrans
transaction TInit
begin
SilkKDTInit();
SilkTestSetTinkTime(5.0);
end TInit;
transaction TTest
var
dataset : list of string;
begin
SilkKDTExecuteTest("library.zip", "KDTTest", dataset, "KDTTest_Timer");
end TTest;