0
このスクリプトを使用すると、2番目のIEセッションが開始された理由を確認できますが、パスワードとユーザーの入力データは入力されません。複数のページにVBAでログインする
Sub MyLogin()
Dim Url As String
Dim ie As Object
Set ie = CreateObject("InternetExplorer.Application")
With ie
.Visible = True
.navigate "https://website"
Do Until .readystate = 4
DoEvents
Loop
.document.all.Item("username").Value = "userid"
.document.all.Item("password").Value = "password//"
.document.forms(0).submit
Url = "https://website"
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.navigate Url
ie = Nothing
Do
DoEvents
Loop Until ie.readystate = 4
.document.all.Item("Enter user name").Value = "userid"
.document.all.Item("passwd").Value = "password"
.document.forms(0).submit
End With
End Sub
ありがとうComintern –
それを解決しました。ブレークダウンのためのおかげです。 –