![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjG_AwzQQ6PN31Ino_bryDb64k73Z20gNERCSJ_lzOgSl6M65lZmsuHgTDh1MnQQtstY03n4rqUex99f6vP7Swts3qtg26UfrGZrjDFdTxug8VXUnz0zYTXzm8huwDFrYXZ3zEi/s280/Website+Login+Popup+VBA+Coding.png)
The new HTTPS popups cause lot of irritation to the developers who have coded for it before.
I have tried to circumvent it using SendKeys. Please have a look at the snippet below and share your views on it
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