|
本帖最后由 he_jian 于 2011-1-17 16:25 编辑
qtp在进行回放时,有时这句能通过,有时这句通过不了,是什么问题
Browser("后台管理系统").Page("后台登陆界面").WebEdit("用户名").Set (user)
出现的错误提示为语法错误
代码如下:
Function UtilAppliction(user,pwd)
'systemUtil.Run "Interent Explorer.exe","http://xxxxxxxx/admin/index.php",这句话运行时,出现语法提示
systemUtil.Run "http://xxxxxxxxxxxxxxxxxx/admin/index.php"
Browser("后台管理系统").Page("后台登陆界面").WebEdit("用户名").Set (user)
Browser("后台管理系统").Page("后台登陆界面").WebEdit("密码").Set crypt.Encrypt(pwd)
'人为干预输入验证码
Dim strCheck
strCheck = InPutBox("Please enter checkcode:")
Browser("后台管理系统").Page("后台登陆界面").WebEdit("验证码").Set strCheck
Browser("后台管理系统").Page("后台登陆界面").Image("登陆").Click
End Function
'调用UtilAppliction
UtilAppliction "admin","admin888" |
|