Scraping Weather table data

Hello, I have issues scraping the following website : https://www.meteo60.fr/stations-releves/station-jour?station_id=LFXA-07482&date=01%2F01%2F2018

There is the site map I created :
{"_id":"meteo_60","startUrl":["https://www.meteo60.fr/stations-releves/station-jour?station_id=LFXA-07482&date=01%2F01%2F2018"],"selectors":[{"id":"Table Data","type":"SelectorElement","parentSelectors":["_root"],"selector":".stationsTab tbody","multiple":true,"delay":0},{"id":"Heure UTC","type":"SelectorText","parentSelectors":["Table Data"],"selector":"td:nth-of-type(1)","multiple":true,"regex":"","delay":0},{"id":"Température (°C)","type":"SelectorText","parentSelectors":["Table Data"],"selector":"td:nth-of-type(3)","multiple":true,"regex":"","delay":0},{"id":"Humidité relative (%)","type":"SelectorText","parentSelectors":["Table Data"],"selector":"td:nth-of-type(5)","multiple":true,"regex":"","delay":0}]}

My aim is to extract 3 data columns : Hour / Temperature / Relative humidity.

I have absolutely no idea why it is not working because when I click on the "Data preview" button, I get what I want. But when I launch the scraper, I don't get any data at the end.

Maybe someone can explain to me where are my mistakes ? Thank you

Try this:

{"_id":"meteo_60","startUrl":["https://www.meteo60.fr/stations-releves/station-jour?station_id=LFXA-07482&date=01%2F01%2F2018"],"selectors":[{"id":"Table Data","type":"SelectorElement","parentSelectors":["_root"],"selector":".stationsTab tbody tr","multiple":true,"delay":0},{"id":"Heure UTC","type":"SelectorText","parentSelectors":["Table Data"],"selector":"td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"Température (°C)","type":"SelectorText","parentSelectors":["Table Data"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"Humidité relative (%)","type":"SelectorText","parentSelectors":["Table Data"],"selector":"td:nth-of-type(5)","multiple":false,"regex":"","delay":0}]}

Hello, thanks for your help. It is still not working but I should be able to fix it by spending more time on it !