Error Parsing Line

How do I resolve "Error parsing line"?

Answer: Put a Messagebox command between lines of the script.

If a script breaks down, SecureLogin typically displays "Error parsing line" to inform you that the script isn't working. However, occasionally the script breaks down even though there is no error parsing a line. By putting the Messagebox command between lines of the script, you can see exactly where the script stops functioning.

The following sample illustrates using the Messagebox command.

Type $username
Messagebox "This is the first message box after username"
Type $password
Messagebox "after password"
Click #1
Messagebox "after click#1"
Click #2
Message box "after click#2"

If the message box with the text "This is the first message box after username" appears, you know that the first line of the script executed successfully. To allow the script to continue to the next line, click OK on the message box.

For more information, see MessageBox in SecureLogin Script Commands.