サードパーティ アプリケーションへのログインを自動化するために、以下の VBA コードを作成しました。以下のコードを実行すると、Internet Explorer ブラウザーのみが開き、リンクに移動して何もしません。ここに私のコードがあります:
Sub Login_Aravo()
Dim ie
Dim sURL As String
On Error GoTo Err_Clear
sURL = "https://demo.aravo.com/"
Set ie = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.navigate sURL
Do
' Wait till the Browser is loaded
Loop Until ie.readyState = READYSTATE_COMPLETE
ie.Document.all.Item("j_username").Value = "Nothing" 'Enter your username here
ie.Document.all.Item("j_password").Value = "Nothing" 'Enter your password here
ie.Document.all.Item("login").Click
' oBrowser.Refresh ' Refresh If Needed
Err_Clear:
If Err <> 0 Then
'Debug.Assert Err = 0
Err.Clear
Resume Next
End If
End Sub
あなたの助けは大歓迎です。
ありがとうアラップ