在过去的几天里,我一直在反复尝试将HTML元素中的文本放入列表框。 网址为https://www.roblox.com/users/88510187/favorites#!/places 而且我正在尝试抓取用户最喜欢的位置,在这种情况下,第一个将是“ B for build”,这是我最近尝试并没有得到的结果。
Private Sub test3()
Dim divs = WebBrowser1.Document.Body.GetElementsByTagName("div")
For Each d As HtmlElement In divs
If d.GetAttribute("className") = "text-overflow item-card-name ng-binding" Then
ListBox1.Items.Add(d.OuterText)
End If
Next
End Sub
我使用内部和外部文本以及HTML多次更改了sub,但似乎无法仅获取纯文本。我到底想念什么?