Scrape from old style HTML table

Hey! I am trying to read the temperature from a seemingly simple HTML page.

Unfortunately, I am unable to do so. When I set the CSS selector,
(body > table:nth-child(3) > tbody:nth-child(1) > tr:nth-child(8) > td:nth-child(3) > b:nth-child(3) > font:nth-child(1) > nobr:nth-child(1))
I do not get a value. Can anyone help me?
Many thanks.

Might help to tell us which cell on that otherwise absolutely hideous 90’s table you’re trying to fetch. Also which scrape integration you’re using.

It’s the value in the middle, in row “Aussentemperatur (in 2m Hoehe)”, with the value “3,2 °C” in this moment (it changes every 15 minutes).


I use the integration in HA

Well Im just getting unknown error when I try so I’m afraid I’m of no help. However when I queried that cell I got a slightly different selector than you did, might be worth a try?
body > table:nth-child(3) > tbody > tr:nth-child(8) > td:nth-child(3) > b:nth-child(3) > font > nobr

First of all, thank you very much for your support. When I use the selector, it does not produce any results.