Image Links Not Coming Back Correctly

Hi. New to Web Scraper, and really like it so far.
Trying to get the link for images for restaurants on trip advisor.
When I do the data preview, it seems to have all of the image links right.

However, when I do the actual "scrape", my image links all come back the same as:

[https://static.tacdn.com/img2/x.gif]

Any suggestions on how to fix this?
Thanks!

Sitemap:
{"_id":"tripadvisor1","startUrl":["https://www.tripadvisor.com/Restaurants-g32737-Monterey_Monterey_County_California.html"],"selectors":[{"id":"rest-wrapper","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.listing:nth-of-type(n+3)","multiple":true,"delay":0},{"id":"name","type":"SelectorText","parentSelectors":["rest-wrapper"],"selector":"a.property_title","multiple":false,"regex":"","delay":0},{"id":"reviews","type":"SelectorText","parentSelectors":["rest-wrapper"],"selector":".reviewCount a","multiple":false,"regex":"","delay":0},{"id":"rank","type":"SelectorText","parentSelectors":["rest-wrapper"],"selector":"div.popIndex","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["rest-wrapper"],"selector":"img","multiple":false,"delay":0}]}

Because the images only render when you scroll past them, otherwise you only get a placeholder.

Try this with a scroll selector:

{"_id":"tripadvisor1","startUrl":["https://www.tripadvisor.com/Restaurants-g32737-Monterey_Monterey_County_California.html"],"selectors":[{"id":"rest-wrapper","type":"SelectorElementScroll","parentSelectors":["_root"],"selector":"div.listing:nth-of-type(n+3)","multiple":true,"delay":"2000"},{"id":"name","type":"SelectorText","parentSelectors":["rest-wrapper"],"selector":"a.property_title","multiple":false,"regex":"","delay":0},{"id":"reviews","type":"SelectorText","parentSelectors":["rest-wrapper"],"selector":".reviewCount a","multiple":false,"regex":"","delay":0},{"id":"rank","type":"SelectorText","parentSelectors":["rest-wrapper"],"selector":"div.popIndex","multiple":false,"regex":"","delay":0},{"id":"image","type":"SelectorImage","parentSelectors":["rest-wrapper"],"selector":"img","multiple":false,"delay":0}]}

Thank you very much!
That did work.