Fetch исполнитель и название от net radio
Hi, I am trying to fetch the artist and title from a website streaming live music.
http://radioglobus.dk/netradio/?autoplay=true%22
If I hit F12 (Developer Tools) in Edge I can see the artist in <span class="nowPlayingArtist"></span><br /> And the title in <span class="nowPlayingTitle"></span><br /> But the above function returns everything except the artist and the title. What do I need to fetch the artist and title? Thank in advance
Что я уже пробовал:
Public Async Function GetIt(ByVal uri As String) As Task(Of String) Dim Content As String = Await wvRadio.InvokeScriptAsync("eval", New String() {"document.documentElement.outerHTML;"}) Await Task.Delay(2000) If Content.Contains("playingnow") Then Debug.WriteLine(Content) End If Return "" End Function