Extract "background-image" URL from style="background-image: url(https://image.jpg)

I'm trying to scrape a "background-image" URL (style)

I've defined the selector below but I can't get the image URL with the Selector...
#top > main > div.xxx > div.zzz
How can I extract the url from style="background-image"?

Did someone face the same situation?
Thank you in advance for your help/tips.

At the moment you could try to extract contents of style attribute with element attribute selector.

In the future we will add background image extraction to Image selector.

Is background image extraction available yet?

Assuming the pattern is consistent, you can get the url with type: HTML and a regex. But I'd need to look at the exact code snippet first.