Abra Google Chrome y cambie la URL con vbscript

Abra Google Chrome y cambie la URL con vbscript

Quiero abrir Chrome con una URL. Después de 10 segundos, es necesario redirigir a otra URL.

Dim iURL 
Dim iURL2
Dim objShell

iURL = "http://10.184.165.112/platform-gwt-war/"
iURL2 = "http://10.184.165.112/platform-gwt-war/#Plant_Equipment_Status"

set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "Chrome.exe", iURL, "", "", 1
objShell.ShellExecute "Chrome.exe", iURL2, "", "", 2

Esto está abriendo 2 pestañas. Enviar claves tampoco funciona.

¿alguna sugerencia?

información relacionada