Dim IE As New InternetExplorer
Dim IEDoc As HTMLDocument
Dim InputGoogleZoneTexte As HTMLInputElement
Dim InputGoogleBouton As HTMLInputElement
Dim HtmlElementStandard As HTMLGenericElement
IE.Navigate "www.google.fr"
IE.Visible = False
WaitIE IE
Set IEDoc = IE.Document
Set InputGoogleZoneTexte = IEDoc.all("q")
InputGoogleZoneTexte.Value = Sheets("BASE").Range("D3").Value & " Pays"
IE.Document.Forms(0).submit
WaitIE IE
Set HtmlElementStandard = IEDoc.getElementsByClassName("Z0LcW").Item(1)
MsgBox HtmlElementStandard.innerText
Set IE = Nothing
Set IEDoc = Nothing
Set HtmlElementStandard = Nothing