Salve,
sono un neofita vbnet e avrei bisogno di un aiuto x cercare del testo in una pagina web, il massimo sarebbe se MsgBox visualizzasse anche la posizione del testo trovato, grazie

codice:
Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        Process.Start("www.google.com")
        Dim wb As WebBrowser
        If wb.DocumentText.ToLower.Contains("Cerca con Google") Then
            MsgBox("SI")
        Else
            MsgBox("NO")
        End If
    End Sub
End Class