secureCRT VBS using WaitForStrings() and Switch Case

5.2k Views Asked by At

This is a script to simulate answers from a machine, my problem is that "WaitForStrings" dosent differentiate between "open" and "open1" or "close" and "close1", he always answers to "open" and "close"

firstopen=true
while(true)
 strResult = crt.Screen.WaitForStrings("open1","close1","open","close","SCAN")
 Select Case strResult
  Case 1
   crt.Sleep 500
   crt.Screen.Send("open1_ok") & chr(13)
  Case 2
   crt.Sleep 500
   crt.Screen.Send("close1_ok") & chr(13)

  Case 3
   If firstopen=true then
    crt.Sleep 500
    crt.Screen.Send("open_ok") & chr(13) 
    firstopen=false
   else
    crt.Sleep 500
    crt.Screen.Send("ok") & chr(13)
    firstopen=true
   end if 
  Case 4
  crt.Sleep 500
  crt.Screen.Send("ready") & chr(13)

  Case 5
  crt.Sleep 500
  crt.Screen.Send("CCD_PASS") & chr(13)
  
  Case Else
  crt.Screen.Dialog "We didn't find what we were looking for"
 
 End Select
wend

2

There are 2 best solutions below

0
On

Might be relevant

From A Guide to Using VBScript in SecureCRT - Page 41 (excerpt)
Avoid "Missing" Data with Screen.Synchronous = True

In order to avoid the potential for WaitForString() and its related methods to miss data that is sent from the remote while other code within your script is being executed, it's important to know about the Synchronous property associated with the Screen object. You may have seen Screen.Synchronous = True statements appear within some of the sample code you've seen earlier in this document; this section attempts to explain when it would be important to use such statements within your code.

...

If your script code seems to be "missing" data that appears on the screen, inspect your code and ensure that the Synchronous property of the Screen object with which you are working is set to True. Be aware, however, that setting Screen.Synchronous to True can seem to have an impact on SecureCRT's performance because data will not be displayed to the screen until calls to WaitForString, WaitForStrings, ReadString, or WaitForCursor are made. For example, the following script code will result in a successful connection to the remote host, but nothing will be displayed to the terminal window since the script is looping forever (without making any calls to ReadString, WaitForString, WaitForStrings, or WaitForCursor).

0
On

try to put in your third line command the following line:

strResult = crt.Screen.WaitForStrings(["open1","close1","open","close","SCAN"])

hope it helps!!