11-17-2009, 11:57 PM
I'm not sure what you want to test.
But you can make your own check points in your function.
Simple example would be:
'Make sure username is not empty
But you can make your own check points in your function.
Simple example would be:
'Make sure username is not empty
Code:
If Username <> "" then
Reporter.ReportEvent micPass, "Username", "Username was not empty"
Browser("Login").Page("Login").WebEdit("_email").Set username
Else
Reporter.ReportEvent micFail, "Username", "Username was Empty"
End if