Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to make the program wait

Former Member
0 Likes
472

Hi,

I am printing some words for 1000 lines.

I want to print the program based on the time lines.

After the first line print,the second line needs to be printed after 1 minute.

is it possible to do this.

2 REPLIES 2
Read only

Former Member
0 Likes
414

Hi,

Wait is achived bu foll syntax

wait up to 60 seconds .

So if u want the lines to be printed one by one after every 1 min , u need to have the above line of code in a loop.

Thanks ,

Supriya

Read only

Former Member
0 Likes
414

You can use WAIT command for this.

Example

write: 'Test'.

wait UP TO 10 SECONDS.

write: 'Test1'.

Hope this will help you.