|
SystemUtil.Run "C:\Program Files\HP\QuickTest Professional\samples\flight\app\flight4a.exe"
With Window("Text:=Login")
.WinEdit("Attached Text:=Agent Name:").Set DataTable ("UserName", "Action1")
.WinEdit("Attached Text:=Password:").SetSecure DataTable ("Password", "Action1")
PW = DataTable.Value("Password", "Action1")
'Msgbox PW
If PW <>"MERCURY | mercury" Then
Msgbox "密码错误"
Else
Msgbox "密码正确"
End If
End With
当用户输入密码为Mercury时,无论大小写都是正确的。
If PW <>"MERCURY | mercury" Then, 请问在这一句中如何使用正则表达式。
或者更复杂一点,不如MerCUrY什么的都是正确的,该如是使用正则。谢谢 |
|