Truques VBA Raramente Usados - Como Logar-se em sites HTTPS Usando VBA Excel
Atualize seu código que precisa logar-se em páginas HTTPS.
Automatize a conexão nos sites que precisa informar login e senha.
Set ie = CreateObject("InternetExplorer.Application.1")
ie.Visible = True
ie.navigate cURL
Application.Wait (Now + TimeValue("0:00:10"))
If ie.readyState = READYSTATE_LOADING Then
Set objShellWindows = New ShellWindows
Application.SendKeys "abcd"
Application.SendKeys "{TAB}"
Application.SendKeys "pwd123"
Application.SendKeys "{TAB}"
Application.SendKeys "{RETURN}"
End If
'Do While ie.Busy: DoEvents: Loop
Set doc = ie.Document
brazilsalesforceeffectiveness@gmail.com