I'm new in Scrapy. I try to get link to the next page from this site https://book24.ru/knigi-bestsellery/?section_id=1592
What how html looks like: enter image description here
In scrapy shell I wrote this command:
response.css('li.pagination__button-item._next a::attr(href)')
It returns an empty list.
I have also tried
response.css('a.pagination__item._link._button._next.smartLink')
but it also returns an empty list.
I will be grateful for the help!