Scrape not working on simple site

Hi all,
been trying for days to get this working.
I’m trying to scrape song info from a website (so i see the artist and song that is playing on a radion station)

If I try it with examples I find on this form, it works perfectly, but i’m trying to scrape from this site:

https://www.bruzz.be/live/popup/

and the css selector is:

span.song__artist:nth-child(1)

I want to scrape artist and song.

So my first sensor is:

 - platform: scrape
    name: bruzz artist
    resource: https://www.bruzz.be/live/popup/#listen
    select: "span.song__artist:nth-child(1)"

i’ve tried every variety i can find, but I always get “unkown”
any posibility for this site? is it something special i’m missing.
the path for this selector is:

html body div#app div.app div.app__content.is-radio div.songs div.songs__current div.song.is-current span.song__artist

thanks.

Just use their API:

https://www.bruzz.be/api/radio/current

{
	"current": {
		"date": "04-12-2021",
		"hour": "15:25:14",
		"artist": "TALK TALK",
		"title": "LIFE IS WHAT YOU MAKE IT"
	},
	"next": {
		"date": "04-12-2021",
		"hour": "15:28:59",
		"artist": "24kGoldn ft.Iann Dior",
		"title": "Mood"
	},
	"previous": {
		"date": "04-12-2021",
		"hour": "15:21:46",
		"artist": "Shaybo ft.NSG",
		"title": "Don't Play Me"
	}
}

Thanks Chris!
This is a direction I never took before, and i’ll have to start learning about API’s and understanding how to create a rest sensor for this?

This is a bit difficult to understand for me (and the examples seem very complicated)
could you point me in the right direction how to get the current artist and song in a sensor?

thanks for the help.

See e.g. the below thread for something very similar.

uh wow, it took my the whole day to grasp the concept of json and values and the formatting of this thing. I finally managed to make this work properly !!

thanks a million Chris. i’m still wondering why I couldn’t use the scrape - way. I would like to understand what went wrong there or why it didn’t scrape that value.
really happy with the result (still have to work on the graphic aspect, but i’m slowly building up a new dashboard and thanks to you I now see what’s playing live on my favorite radio station on a custom button.