Skip to content

Instantly share code, notes, and snippets.

@kumatti1
Created December 8, 2013 04:12
Show Gist options
  • Save kumatti1/7853251 to your computer and use it in GitHub Desktop.
Save kumatti1/7853251 to your computer and use it in GitHub Desktop.
WAONにログイン
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