For this script, if you are trying to compare
Code:
If strMail = "dqv@yahoo.com" Then
Browser("Browser").Page("ABC").WebButton("Login").Click
else
reporter.ReportEvent micFail, "Failed Report","Failed Email"
End If
The script should be
If strcomp (strMail,"xxxxxx") = 0 Then
Browser("Browser").Page("ABC").WebButton("Login").Click
else
reporter.ReportEvent micFail, "Failed Report","Failed Email"
End If
