I am trying to open an IPV6 web page that may or may not have a security warning. After which I would like to pause then enter the username and password. The IPV6 location is based off of Excel.Worksheets("Main").Range("A5").Value . The code I have to open the web page is :
Private Sub Label2_Click()
Dim IPV As String
IPV = Excel.Worksheets("Main").Range("A5").Value
Airscale = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --new-window https://[" & IPV & "]:3600"
Call Shell(Airscale, vbMaximizedFocus)
End Sub
It works fine to open the web page but, I was hoping to further automate the process. All of the IPV6 pages use the same username (lets say Peel) and password (lets say Banana).
Is this at all possible with VBA?
Private Sub Label2_Click()
Dim IPV As String
IPV = Excel.Worksheets("Main").Range("A5").Value
Airscale = "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --new-window https://[" & IPV & "]:3600"
Call Shell(Airscale, vbMaximizedFocus)
End Sub
It works fine to open the web page but, I was hoping to further automate the process. All of the IPV6 pages use the same username (lets say Peel) and password (lets say Banana).
Is this at all possible with VBA?