Website scraping, but no output

Good afternoon, a sitemap that I've used for months now (last time it was working was two days ago) has stopped scraping any data, meaning that it starts scraping as usual, but exporting the data produces an empty spreadsheet.
Getting a preview from the selector works perfectly fine, the data is all there as usual, it's just the final result that comes out empty.
I'm clueless to how to solve or even troubleshoot the problem other than what I've already done (checking the selectors element and data preview, remaking the sitemap from scratch).

Url: https://www.albumoftheyear.org/2024/releases/august-08.php?type=lp&s=critic&reviews=1

Sitemap:
{"_id":"AOTY_monthly","startUrl":["https://www.albumoftheyear.org/2024/releases/august-08.php?type=lp&s=critic&reviews=1"],"selectors":[{"id":"elemt","parentSelectors":["_root"],"type":"SelectorElementClick","clickActionType":"real","clickElementSelector":"div.largeButton","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickMore","delay":2000,"discardInitialElements":"do-not-discard","multiple":true,"selector":"div.albumBlock"},{"id":"artist","parentSelectors":["elemt"],"type":"SelectorText","selector":"div.artistTitle","multiple":false,"regex":""},{"id":"album","parentSelectors":["elemt"],"type":"SelectorText","selector":"div.albumTitle","multiple":false,"regex":""},{"id":"link","parentSelectors":["elemt"],"type":"SelectorLink","selector":"a:nth-of-type(2)","multiple":false,"linkType":"linkFromHref"},{"id":"genre","parentSelectors":["link"],"type":"SelectorText","selector":"div.detailRow:nth-of-type(5)","multiple":false,"regex":""},{"id":"label","parentSelectors":["link"],"type":"SelectorText","selector":"div.detailRow:nth-of-type(4) a","multiple":false,"regex":""},{"id":"date","parentSelectors":["link"],"type":"SelectorText","selector":"div.detailRow:nth-of-type(2)","multiple":false,"regex":""},{"id":"crit","parentSelectors":["link"],"type":"SelectorText","selector":"[itemprop='ratingValue'] a","multiple":false,"regex":""},{"id":"user","parentSelectors":["link"],"type":"SelectorText","selector":".albumUserScore a","multiple":false,"regex":""},{"id":"critic_count","parentSelectors":["link"],"type":"SelectorText","selector":"span[itemprop='reviewCount']","multiple":false,"regex":""},{"id":"user_count","parentSelectors":["link"],"type":"SelectorText","selector":".numReviews a strong","multiple":false,"regex":""},{"id":"boh","parentSelectors":["link"],"type":"SelectorText","selector":"div.wideLeft","multiple":false,"regex":""},{"id":"format","parentSelectors":["link"],"type":"SelectorText","selector":"div.detailRow:nth-of-type(3)","multiple":false,"regex":""}]}

seems like you are wrong, everything is scraping ok...
here is a sample file

just some little changes:

{"_id":"AOTY_monthly","startUrl":["https://www.albumoftheyear.org/2024/releases/august-08.php?type=lp&s=critic&reviews=1"],"selectors":[{"clickActionType":"real","clickElementSelector":"div.largeButton","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickMore","delay":2000,"discardInitialElements":"do-not-discard","id":"elemt","multiple":true,"parentSelectors":["_root"],"selector":"div.albumBlock","type":"SelectorElementClick"},{"id":"artist","multiple":false,"parentSelectors":["elemt"],"regex":"","selector":"div.artistTitle","type":"SelectorText"},{"id":"link","linkType":"linkFromHref","multiple":false,"parentSelectors":["elemt"],"selector":"a:has(div.albumTitle)","type":"SelectorLink"},{"id":"genre","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.detailRow:has(a[itemprop=\"genre\"])","type":"SelectorText"},{"id":"label","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.detailRow:contains(\"Label\")","type":"SelectorText"},{"id":"date","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.detailRow:contains(\"Release Date\")","type":"SelectorText"},{"id":"crit","multiple":false,"parentSelectors":["link"],"regex":"","selector":"[itemprop='ratingValue']","type":"SelectorText"},{"id":"user","multiple":false,"parentSelectors":["link"],"regex":"","selector":".albumUserScore","type":"SelectorText"},{"id":"critic_count","multiple":false,"parentSelectors":["link"],"regex":"","selector":"span[itemprop='reviewCount']","type":"SelectorText"},{"id":"user_count","multiple":false,"parentSelectors":["link"],"regex":"","selector":".numReviews a strong","type":"SelectorText"},{"id":"boh","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.wideLeft","type":"SelectorText"},{"id":"format","multiple":false,"parentSelectors":["link"],"regex":"","selector":"div.detailRow:contains(\"Format\")","type":"SelectorText"}]}
1 Like

Thanks, it was likely a temporary problem with them, seems like. I appreciate the input, at least I know there's nothing wrong with the extension then :slight_smile: