12-02-2008, 09:26 PM
Hi, kumsweta
If you need to wait until tester performed some action (for example, click OK button), you can use code:
If you need wait some particular time, you can use code:
where 5 is time to pause in seconds, you can use any number you need.
If you want to stop test execution, use statement:
Andrey
If you need to wait until tester performed some action (for example, click OK button), you can use code:
Code:
msgbox("File does not exist!!! Click OK to continue")
Code:
wait 5
If you want to stop test execution, use statement:
Code:
ExitTest
Andrey