Follow along with the video below to see how to install our site as a web app on your home screen.
Not: This feature may not be available in some browsers.
Dim PageElements As HtmlElementCollection = WebBrowser1.********.GetElementsByTagName("a")
For Each curlElement As HtmlElement In PageElements
If InStr(curlElement.InnerHtml, "friends") Then
curlElement.InvokeMember("Click")
End If
Next