I assume you are talking about the carousel down below.

Attachment 778325

In order to get the carousel you'll need to use Xpath to get elements. For example this gets you the elements in the carousel.

.//ol[contains(@class, 'a-carousel')]

to get each element you'll need to use

(.//li[contains(@class, 'a-carousel-card')])[1]

To get to next page use

.//span[text()='Next page']

If I have time I'll try to do a demo.