Jump to content

Recommended Posts

Posted

I am a new AutoIt user. Can anyone tell me where can I view the logs ie. whether my script has passed or failed?

Is there any option like Test Manager in Rational Robot where the log gets dumped

Posted

Try something like ConsoleWrite. This will write a message on the SciTE console. You need to put on your script something in the likes of:

$password = "meine"
$getpass = InputBox("Enter Password", "Please enter the password:", "*")
If $getpass == $password Then
      ConsoleWrite("Password was succesfull!")
Else
      ConsoleWrite("Incorrect Password")
EndIf

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...