|
executefile调用VBS(登录系统操作),为什么会执行两次,如何执行一次
代码如下:
executefile "C:\Login.vbs"
Login.vbs
Systemutil.CloseProcessByName "iexplore.exe"
systemutil.Run "iexplore.exe","address"
' Home Page & Login
Browser("OfficeMax").Page("OfficeMax_Login").WebEdit("username").Set username
Browser("OfficeMax").Page("OfficeMax_Login").WebEdit("password").SetSecure password
sCode=INputbox("Enter Security Code!", , "123456")
Browser("OfficeMax").Page("OfficeMax_Login").WebEdit("validate").Set sCode
Browser("OfficeMax").Page("OfficeMax_Login").WebElement("Login").Click
Browser("OfficeMax").Page("OfficeMax_Login").Sync |
|