Oct-08-2018, 09:13 AM
Hello guys...i made this script for this website....but my pagination doesn't work because its just javascript...and when you click nextpage the container loads new data....
i did found the urls for the naxt pages, here's some examples:
Page2
Page3
But im getting the results from the first page only....:/
code:
i did found the urls for the naxt pages, here's some examples:
Page2
Page3
But im getting the results from the first page only....:/
code:
# -*- coding: utf-8 -*-
import scrapy
import time
class SiriosbotSpider(scrapy.Spider):
name = 'SiriosBot'
start_urls = ['https://www.siriocenter.gr/Proionta/Mpoulonia-ApostatesTroxwn']
def parse(self, response):
for content in response.css('div.resultItemTxt'):
item = {
'Title' : content.css('th[colspan="2"] > a::text').extract(),
'Price' : content.css('div.price > span::text').extract(),
'Manufacture' : content.css('tr:nth-child(2)').extract(),
'Model' : content.css('tr:nth-child(3)').extract(),
'Eidos' : content.css('tr:nth-child(4)').extract(),
'Typos' : content.css('tr:nth-child(5)').extract(),
'Kare' : content.css('tr:nth-child(6)').extract(),
'Comments' : content.css('tr:nth-child(7)').extract(),
'ProductLink' : content.css('th[colspan="2"] > a::attr(href)').extract(),
'Img' : content.css('div.resultItemImage > a').extract(),
'CurrentURL' : response.url
}
yield item
for next_page in response.css('div.paging > a:last-child::attr(href)'):
url = response.urljoin(next_page.extract())
yield scrapy.Request(url, self.parse)Thank you! :D

![[Image: tNDcG2E.png]](https://i.imgur.com/tNDcG2E.png)
![[Image: 9RnVCbR.png]](https://i.imgur.com/9RnVCbR.png)