Advertisement
hungcoder92

Facebook Bot 2

Apr 18th, 2022
1,613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.34 KB | None | 0 0
  1.  Dim Page As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("a")
  2.         ListBox1.Items.Clear()
  3.         For Each Element As HtmlElement In Page
  4.             If Element.GetAttribute("href").Contains("/groups") Then
  5.                 ListBox1.Items.Add(Element.GetAttribute("href").ToString())
  6.             End If
  7.         Next
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement