Automating Google Chrome to log in

greejo1

New Member
Joined
Jul 11, 2019
Messages
1
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?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.

Forum statistics

Threads
1,215,067
Messages
6,122,949
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top