Hi.
I am trying to create a macro that will send a specific line, and then wait for specific data that happens to be on 2 separate lines.
When I log in, it responds with the 2 lines below.
TAG COMPLD
;
I want it to wait to send the next line until after it sees both the "TAG COMPLD" and then the ";" right below it.
I tried this, but it did not work.
- sendln'activate-userrname:::kw;'
- wait'TAG COMPLD'
- wait';'
- sendln'next-command'
It will send the next command after it see the TAG COMPLD.
Can anyone point me in the right direction please?