Cambia de la macro de buscador Explore a Chrome
Se tiene la siguiente macro, en la cual desearía cambiar el navegador que hace referencia, esta macro al ejecutar abre el Explore, hay forma que al ejecutar navegue con el Chrome.
ub ACCESO_SOL_SUNAT()
Dim IE As Object
Dim Boton As Object
Dim Opcion2 As Object
Dim Opcion3 As Object
Set IE = CreateObject("InternetExplorer.Application")
On Error Resume Next
If Range("E42").Value = "Declaración y Pago" Then
IE.Navigate "https://www.sunat.gob.pe/xssecurity/SignOnVerification.htm" & _
"?signonForwardAction=https%3A%2F%2Fwww.sunat.gob.pe%2Fol-at-itcanal%2Fcanal.do"
Application.Wait (Now + TimeValue("00:00:02"))
While IE.Busy
DoEvents
Wend
IE.Document.all.Item("ruc").Value = Range("E8").Value
IE.Document.all.Item("usuario").Value = Range("E10").Value
IE.Document.all.Item("clave").Value = Range("E12").Value
Set Boton = IE.Document.getElementById("btnAceptar")
Boton.Click
ElseIf Range("E42").Value = "Declara Facil" Then
IE. Navigate "abre otra pagina, como la extensión es larga no me permite copiarlo"
Application.Wait (Now + TimeValue("00:00:02"))
While IE.Busy
DoEvents
Wend
Set Opcion2 = IE.Document.getElementById("btnPorRuc")
Opcion2.Click
IE.Document.all.Item("TXTRuc").Value = Range("E8").Value
IE.Document.all.Item("txtusuario").Value = Range("E10").Value
IE.Document.all.Item("txtContrasena").Value = Range("E12").Value
Set Boton = IE.Document.getElementById("btnAceptar")
Boton.Click
Else
IE.Navigate "https://e-menu.sunat.gob.pe/cl-ti-itmenu/MenuInternet.htm"
Application.Wait (Now + TimeValue("00:00:01"))
While IE.Busy
DoEvents
Wend
Set Opcion3 = IE.Document.getElementById("btnPorRuc")
Opcion3.Click
IE.Document.all.Item("txtruc").Value = Range("E8").Value
IE.Document.all.Item("txtusuario").Value = Range("E10").Value
IE.Document.all.Item("txtContrasena").Value = Range("E12").Value
End If
Set Boton = IE.Document.getElementById("btnAceptar")
Boton.Click
IE.Visible = True
Set IE = Nothing
End
End Sub