Date format change after scraping

Hello, I am extracting a date in format mm/dd/yyyy

In preview the format is displayed properly, however after scraping it only shows numbers.

Url: https://www.trycarriage.com/restaurants/saraya-istanbul/branch/3492/search?_=1589011086932&country=qa&locale=en&logged_in=true

Sitemap:
{"id":"sarayacarriage","startUrl":["https://www.trycarriage.com/restaurants/saraya-istanbul/branch/3492/search?=1589011086932&country=qa&locale=en&logged_in=true&page=[1-2]"],"selectors":[{"id":"Row","type":"SelectorElement","parentSelectors":["_root"],"selector":".search-orders tr","multiple":true,"delay":0},{"id":"customer","type":"SelectorText","parentSelectors":["Row"],"selector":"td:nth-of-type(8) p","multiple":false,"regex":"","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["Row"],"selector":"td:nth-of-type(9) p","multiple":false,"regex":"","delay":0},{"id":"Date","type":"SelectorText","parentSelectors":["Row"],"selector":".sorting_1 p","multiple":false,"regex":"","delay":0},{"id":"Payment","type":"SelectorText","parentSelectors":["Row"],"selector":"td:nth-of-type(5) p","multiple":false,"regex":"","delay":0},{"id":"Amount","type":"SelectorText","parentSelectors":["Row"],"selector":"td:nth-of-type(7) p","multiple":false,"regex":"","delay":0},{"id":"Order","type":"SelectorText","parentSelectors":["Row"],"selector":"td:nth-of-type(1) p","multiple":false,"regex":"","delay":0}]}

If you're viewing the csv with Excel, it could merely be Excel auto-formatting all dates based on your locale setting.

Try opening the csv with Notepad or other text editor and see if the dates really are different.

Hey @leemeng!
Do you know how I can format the date to dd/mm/yyyy on the creation of the video here:
Sitemap:
{"_id":"youtube-recommendations","startUrl":["https://www.youtube.com/"],"selectors":[{"id":"parent-elem","type":"SelectorElement","parentSelectors":["_root"],"selector":"div#contents.ytd-rich-grid-renderer","multiple":true,"delay":0},{"id":"first-22","type":"SelectorElement","parentSelectors":["parent-elem"],"selector":"ytd-rich-item-renderer.ytd-rich-grid-renderer div#details","multiple":true,"delay":0},{"id":"date","type":"SelectorText","parentSelectors":["first-22"],"selector":"span:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"views","type":"SelectorLink","parentSelectors":["first-22"],"selector":"span.ytd-video-meta-block:nth-of-type(1)","multiple":false,"delay":0},{"id":"title","type":"SelectorLink","parentSelectors":["first-22"],"selector":"a#video-title-link","multiple":false,"delay":0},{"id":"author-id","type":"SelectorLink","parentSelectors":["first-22"],"selector":"a.yt-formatted-string","multiple":false,"delay":0}]}

the output is 2 years ago, 1 month ago, 3 days ago, etc.
Even if I try opening with Notepad or other text editor it only comes that way.

You would not be able to do this using WS alone; it needs post-processing.

However, this would be fairly simple to implement, even for a novice programmer.