Example: TE_wait_text

In the following example, the script types in a name, and then waits for the application to respond.

/* Declare variables for TE_wait_text */
int ret_row;
int ret_col;
char ret_text [80];
/* Type in user name. */
TE_type( "John" );
/* Wait for teller to respond. */
TE_wait_text( "Enter secret code:", 30, 29, 13, 1, 13, &ret_col, &ret_row, ret_text );