Unable to achieve scrapnig on Windfinder.com

Hi all,

I would like to scrape the wind data from Windfinder. For each spot (this example is for Tarifa), there are multiple div containers (in total 10 days) holding the data. My problem is, to get the days, the hours, the wind speed and the gusts in one row.

The result should look like

Date - Time - Speed - Gusts
Dienstag, Jan 10 - 7h - 10 - 17

Url: Wind, waves & weather forecast Tarifa - Windfinder

Sitemap:
{"_id":"tarifa","startUrl":["https://www.windfinder.com/forecast/tarifa_stadtstrand"],"selectors":[{"id":"forecastTable","multiple":false,"parentSelectors":["_root"],"selector":"div#fc-table","type":"SelectorElement"},{"id":"weatherTableContainer","multiple":true,"parentSelectors":["forecastTable"],"selector":"div.weathertable-container","type":"SelectorElement"},{"id":"weatherTable","multiple":true,"parentSelectors":["weatherTableContainer"],"selector":"div.weathertable","type":"SelectorElement"},{"id":"date","multiple":false,"parentSelectors":["weatherTable"],"regex":"","selector":"h3","type":"SelectorText"},{"id":"time","multiple":true,"parentSelectors":["weatherTable"],"regex":"","selector":"span.value","type":"SelectorText"},{"id":"speed","multiple":false,"parentSelectors":["weatherTable"],"regex":"","selector":".data-wrap span.units-ws","type":"SelectorText"}]}

You were on the right track. You only needed the hour columm element, which in the source code is div.weathertable__row:

{"_id":"windfinder-tarifa","startUrl":["https://www.windfinder.com/forecast/tarifa_stadtstrand"],"selectors":[{"id":"forecastTable","multiple":false,"parentSelectors":["_root"],"selector":"div#fc-table","type":"SelectorElement"},{"id":"weatherTableContainer","multiple":true,"parentSelectors":["forecastTable"],"selector":"div.weathertable-container","type":"SelectorElement"},{"id":"weatherTable","multiple":true,"parentSelectors":["weatherTableContainer"],"selector":"div.weathertable","type":"SelectorElement"},{"id":"date","multiple":false,"parentSelectors":["weatherTable"],"regex":"","selector":"h3","type":"SelectorText"},{"id":"time","multiple":false,"parentSelectors":["hour column"],"regex":"","selector":"div.data-time","type":"SelectorText"},{"id":"speed","multiple":false,"parentSelectors":["hour column"],"regex":"","selector":"div.speed","type":"SelectorText"},{"id":"gusts","multiple":false,"parentSelectors":["hour column"],"regex":"","selector":"div.data-gusts","type":"SelectorText"},{"id":"hour column","multiple":true,"parentSelectors":["weatherTable"],"selector":"div.weathertable__row","type":"SelectorElement"}]}