I tried watching tutorials and googling for this, but couldn't find any clues. I am using the demo for zennoproject and getting frustrated.
My project is pretty simple. Go to page, click text box and enter text. Then Press enter key. Retrieve variables from screen.
To "simulate enter key" I added C# code to which I included:
Emulation.Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.Enter,Emulation.KeyboardEvent.Press);
However, now that block is red and says "Exit code variable is not specified." Clicking debug throws a warning as a result of this. How do I provide an exit code variable so that the code will continue processing?
My project is pretty simple. Go to page, click text box and enter text. Then Press enter key. Retrieve variables from screen.
To "simulate enter key" I added C# code to which I included:
Emulation.Emulator.SendKey(instance.ActiveTab.Handle,System.Windows.Forms.Keys.Enter,Emulation.KeyboardEvent.Press);
However, now that block is red and says "Exit code variable is not specified." Clicking debug throws a warning as a result of this. How do I provide an exit code variable so that the code will continue processing?