I'd like to scrape the same webpage repeatedly at 15 minute intervals and write the data at each interval into a separate line in a CSV file. I don't see any functionality to do this but since the whole idea of Web Scraper was to "grab" dynamic data, I kinda expected this option. I'd like live readouts of Temperature and Humidity archived over time to CSV formatted file.
Sitemap:
{"_id":"temphumid","startUrl":["http://"],"selectors":[{"id":"LiveData","type":"SelectorElement","selector":"div.four","parentSelectors":["_root"],"multiple":false,"delay":0},{"id":"Temp","type":"SelectorElement","selector":"div#shtRow1 div#row","parentSelectors":["LiveData"],"multiple":false,"delay":0},{"id":"Humidity","type":"SelectorElement","selector":"div#shtRow2 div#row","parentSelectors":["LiveData"],"multiple":false,"delay":0},{"id":"TempTit","type":"SelectorText","selector":"p.DivTableTitle","parentSelectors":["Temp"],"multiple":false,"regex":"","delay":0},{"id":"TempVal","type":"SelectorText","selector":"span#tmp","parentSelectors":["Temp"],"multiple":false,"regex":"","delay":0},{"id":"HumidTit","type":"SelectorText","selector":"p.DivTableTitle","parentSelectors":["Humidity"],"multiple":false,"regex":"","delay":0},{"id":"HumidVal","type":"SelectorText","selector":"span#hum","parentSelectors":["Humidity"],"multiple":false,"regex":"","delay":0}]}