How to get the howl html document not just the source code ??
So guys Im now working 5 days on solving this problem. I need to get some inner text from a div witch is not visible in the source code. Someone any idea how to get him? Here is what I have until now
Code:
Dim doc As New HtmlAgilityPack.HtmlDocument
Dim web As New HtmlWeb
doc = web.Load("http://openbook.etoro.com/ahanit/#/profile/Trades/")
Dim nodes As HtmlNode = doc.GetElementbyId("feed-items")
Dim id As String = nodes.WriteTo()
TextBox1.Text = TextBox1.Text & vbCrLf & id
Seems the problem is the web.load it returns only the source code ?
Thank youu:wave: