I am scraping for HD images in an e-commerce site. This is the html block containing the url I want, as seen in the dev tools.
<img class="_3togXc _3wp706" alt="" src="https://rukminim1.flixcart.com/image/880/1056/jtn9bww0/t-shirt/5/g/g/m-hm-1001-black-red-helmont-original-imafdfvvr8hqdu65.jpeg?q=50">
But trying to extract src through response.xpath('//img[@class="_3togXc _3wp706"]/@src').extract()
is returning an empty list.
Please help! Thanks.