What was the error message ?
What is the actual behavior ?
Is it returning more content than expected ?
Is it returning less content than expected ?
What have you already tried ?
What about if you try to parse the temperature string in upper right corner (with big font):
body > div:nth-child(3) > div > span.float-right.d-none.d-md-block > span
You may still face some problems, as the string includes °C, so it’s not a number. Still, that should be doable by trimming the last two characters of a string with a template (although I don’t know how exactly to do it).
Well, I tried it now and this code works for me (I put it in sensor.yaml):
- platform: scrape
name: Temperatura Test
resource: https://wetter-meschede.de/
select: "body > div:nth-child(3) > div > span.float-right.d-none.d-md-block > span"
This work for me too, but I want to read the other entries like rain, wind and so on. So I think, when someone help me with the temperature in the table,I can get the other myself.