Bonjour,
c'est un peu vague .. .cela dépends de ta page web et de la façon dont elle est écrite..
tiens un exemple avec la recherche de ce forum ..
Sub RechercheForumExcelPratique()
Dim oIE As Object
Dim oElem As Object
Dim oBoutonRechercher As Object
Set oIE = CreateObject("InternetExplorer.Application")
oIE.Visible = True
oIE.Navigate "http://forum.excel-pratique.com/"
DoEvents
Debug.Print oIE.busy
While oIE.busy
DoEvents
Wend
On Error Resume Next 'Méthode un peu barbare d'attente apparition des éléments sur la page ..
While (oElem Is Nothing) Or (oBoutonRechercher Is Nothing)
Set oElem = oIE.document.getElementById("keywords")
Set oBoutonRechercher = oIE.document.getElementById("keywords_submit")
DoEvents
Wend
On Error GoTo 0
oElem.Value = "ploz"
oBoutonRechercher.Click
End Sub