the images are likley loaded via javascript (delay loading) look at the actual downloaded html you get and see if you can find a reference to the images in the hTML, it's often something like an <img> tag with a data-src attribute or a wrapper tag that contains the actual img URL. Implement preprocess_html in your recipe and convert those into notmal <img src> tags.
|