Created
December 8, 2013 04:12
-
-
Save kumatti1/7853251 to your computer and use it in GitHub Desktop.
WAONにログイン
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim ie | |
Const url = "https://www.waon.com/wmUseHistoryInq/init.do" | |
Set ie = CreateObject("InternetExplorer.Application") | |
ie.Visible = True | |
ie.Navigate url | |
While ie.busy Or ie.ReadyState <> 4 | |
WScript.Sleep (100) | |
Wend | |
With ie.Document.Forms("loginForm") | |
.cardNo1.Value = | |
.cardNo2.Value = | |
.cardNo3.Value = | |
.cardNo4.value = | |
.secNo.Value = | |
.submit | |
End With | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment