Skip to content

Instantly share code, notes, and snippets.

@kumatti1
Created December 3, 2013 02:27
Show Gist options
  • Save kumatti1/7762888 to your computer and use it in GitHub Desktop.
Save kumatti1/7762888 to your computer and use it in GitHub Desktop.
ポンタにログイン
Dim ie
Const url = "https://www.ponta.jp/u/LWAS900/SLWAS900010.htm"
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("form")
.memberID_1.Value =
.memberID_2.Value =
.memberID_3.Value =
.memberID_4.value =
.Password.Value =
.login.click
End With
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment