How can I get pokemon information in pokehub coordinates in vb.net

170 Views Asked by At

How can I get pokemon information in this website(https://pokehubcoordinates.com/pvp) in Vb.net? I tried two ways. but it didn't work

  1. code

      Dim sourceString As String = New System.Net.WebClient().DownloadString("https://pokehubcoordinates.com/pvp")
    
  2. code

     Dim request As WebRequest = WebRequest.Create("https://pokehubcoordinates.com/pvp")
     Using response As WebResponse = request.GetResponse()        
             Using reader As New StreamReader(response.GetResponseStream())
                     Dim html As String = reader.ReadToEnd()
                     File.WriteAllText("e:\test.html", html)
             End Using
     End Using
    
1

There are 1 best solutions below

0
On
Sub ShowSource()
    Dim ts As Task = getSource()
End Sub


Private Async Function getSource() As Task
    Dim source As String = Await _browser.GetBrowser().MainFrame.GetSourceAsync()
    Dim dokuman As HtmlAgilityPack.HtmlDocument = New HtmlAgilityPack.HtmlDocument()
    dokuman.LoadHtml(source)
    Dim veri1 As String = dokuman.DocumentNode.SelectNodes("//*[@id=""root""]/div[4]/div/div[2]/div/div")(0).InnerText
    textbox1.text =veri1 


End Function