Created
December 3, 2013 02:27
-
-
Save kumatti1/7762888 to your computer and use it in GitHub Desktop.
ポンタにログイン
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.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