I need to continuously get the data on next button <1 2 3 ... 5> but there's no provided href link in the source also there's also elipsis. any idea please? here's my code
def start_requests(self):urls = ((self.parse_2, 'https://www.forever21.com/us/shop/catalog/category/f21/sale'),)for cb, url in urls:yield scrapy.Request(url, callback=cb)def parse_2(self, response):for product_item_forever in response.css('div.pi_container'):forever_item = {'forever-title': product_item_forever.css('p.p_name::text').extract_first(),'forever-regular-price': product_item_forever.css('span.p_old_price::text').extract_first(),'forever-sale-price': product_item_forever.css('span.p_sale.t_pink::text').extract_first(),'forever-photo-url': product_item_forever.css('img::attr(data-original)').extract_first(),'forever-description-url': product_item_forever.css('a.item_slider.product_link::attr(href)').extract_first(),}yield forever_item
Please help me thank you