Metadata Scrape

Hi all, I need to extract the data on published date in a resource hub, but i cannot scrape it using the element attribute because it's hidden, it has no css and is not displayed in the listing page, only in the detail page. Any idea how I can get these?

https://www.onlia.ca/magazine/all-blogs

@Smacky Hi, you should be able to extract this data by using the following selector: div.post-date

Example:

{"_id":"onlia-ca","startUrl":["https://www.onlia.ca/magazine/all-blogs"],"selectors":[{"id":"post-links","multiple":true,"parentSelectors":["_root"],"selector":".post > a","type":"SelectorLink"},{"id":"date-published","multiple":false,"parentSelectors":["post-links"],"regex":"","selector":"div.post-date","type":"SelectorText"}]}

awesome, totally works! thanks so much.