Hi,
I have a problem with how to properly set the CSS selector for the next page.
CSS selector for the next page is different because it depends on the number of the current page.
If I am on Page #1
CSS selector for the next page is:
html > body > div:eq(2) > main > div:eq(2) > div:eq(0) > div:eq(7) > div:eq(0) > div:eq(3) > ul > li:eq(6) > a

If I am on Page #3
CSS selector for the next page is:
html > body > div:eq(2) > main > div:eq(2) > div:eq(0) > div:eq(7) > div:eq(0) > div:eq(3) > ul > li:eq(7) > a

If I am at Page #4 and above
CSS selector for the next page is:
html > body > div:eq(2) > main > div:eq(2) > div:eq(0) > div:eq(7) > div:eq(0) > div:eq(3) > ul > li:eq(8) > a


Also, I tried with option Set element as pager but it is the same situation.
div[id="amasty-shopby-product-list"] > div:eq(0) > div:eq(3) > ul > li:eq(6) > a, html > body > div:eq(2) > main > div:eq(2) > div:eq(0) > div:eq(7) > div:eq(0) > div:eq(3) > ul > li:eq(6) > a
Is there any way to solve this situation?
Thank you for sharing your expertise and help.
Dejan