Scrape bg image and mixcloud embed link

Hello, i'm trying to scrape the data from these pages: Drumcode – Radio: Featuring Slam that are nested within https://drumcode.se/radio.

However im struggling to get the mixcloud urls to pull in and also the main image as its set to a background. My current setup is below.

Any help would be greatly appreciated.

{"_id":"radio","startUrl":["https://drumcode.se/radio"],"selectors":[{"id":"radio-base","parentSelectors":["_root"],"type":"SelectorLink","selector":"a.item","multiple":true},{"id":"Code","parentSelectors":["radio-base"],"type":"SelectorText","selector":"div.top","multiple":false,"regex":""},{"id":"Title","parentSelectors":["radio-base"],"type":"SelectorText","selector":".center div","multiple":false,"regex":""},{"id":"Description","parentSelectors":["radio-base"],"type":"SelectorText","selector":"p","multiple":false,"regex":""},{"id":"tracklist","parentSelectors":["radio-base"],"type":"SelectorText","selector":"div.tracklist","multiple":true,"regex":""},{"id":"image","parentSelectors":["radio-base"],"type":"SelectorHTML","selector":"div.image:nth-of-type(2)","multiple":false,"regex":""}]}

@Tslayer Hi, to extract the background image URL you can use an 'Element attribute' selector.

Learn more: Web Scraper << How to >> Extract data from element attribute

Example:

{"_id":"drumcode-se-test","startUrl":["https://drumcode.se/radio/dcr659-dcr659-drumcode-radio-live-adam-beyer-live-mix-from-edc-mexico-mexico-city"],"selectors":[{"id":"details","parentSelectors":["_root"],"type":"SelectorElement","selector":"body","multiple":true},{"id":"Code","parentSelectors":["details"],"type":"SelectorText","selector":"div.top","multiple":false,"regex":""},{"id":"Title","parentSelectors":["details"],"type":"SelectorText","selector":".center div","multiple":false,"regex":""},{"id":"Description","parentSelectors":["details"],"type":"SelectorText","selector":"p","multiple":false,"regex":""},{"id":"tracklist","parentSelectors":["details"],"type":"SelectorText","selector":"div.tracklist","multiple":true,"regex":""},{"id":"image","parentSelectors":["details"],"type":"SelectorElementAttribute","selector":"div.image:nth-of-type(2)","multiple":false,"extractAttribute":"style"}]}