Missing Page 1 Pagination Data

The following scrape of a dynamic website works for page 2 onwards however never returns the items on the 1st page?

Url: https://www.plumbnation.co.uk/boilers/gas-combi-boilers/

Sitemap:
{"_id":"click_pag","startUrl":["https://www.plumbnation.co.uk/boilers/gas-combi-boilers/"],"selectors":[{"id":"click_pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"a.product-card-link","multiple":true,"delay":2000,"clickElementSelector":"li.rc-pagination-item:nth-of-type(n+2) a","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"link","type":"SelectorLink","parentSelectors":["_root","click_pagination"],"selector":"parent","multiple":false,"delay":0},{"id":"product","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Name') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"mpn","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('MPN') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"type","type":"SelectorText","parentSelectors":["link"],"selector":"tr:nth-of-type(5):contains('Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"sub_type","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Sub Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"output","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Output (Kilowatts)') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"mounting","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Mounting') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_link","type":"SelectorLink","parentSelectors":["link"],"selector":".c-prod-listing__detail a","multiple":true,"delay":0},{"id":"acc_product","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:contains('Name') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_mpn","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:contains('MPN') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_type","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:nth-of-type(5):contains('Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_sub_type","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:contains('Sub Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_image","type":"SelectorImage","parentSelectors":["acc_link"],"selector":".c-prod__thumb img","multiple":false,"delay":0}]}

Hi @rik

This should work i think:

{"_id":"click_pag","startUrl":["https://www.plumbnation.co.uk/boilers/gas-combi-boilers/"],"selectors":[{"id":"click_pagination","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"a.product-card-link","multiple":true,"delay":2000,"clickElementSelector":"li.rc-pagination-next:nth(0)","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"link","type":"SelectorLink","parentSelectors":["click_pagination"],"selector":"_parent_","multiple":false,"delay":0},{"id":"product","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Name') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"mpn","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('MPN') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"type","type":"SelectorText","parentSelectors":["link"],"selector":"tr:nth-of-type(5):contains('Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"sub_type","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Sub Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"output","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Output (Kilowatts)') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"mounting","type":"SelectorText","parentSelectors":["link"],"selector":"tr:contains('Mounting') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_link","type":"SelectorLink","parentSelectors":["acc-wrap"],"selector":".c-prod-listing__detail a","multiple":false,"delay":0},{"id":"acc_product","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:contains('Name') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_mpn","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:contains('MPN') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_type","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:nth-of-type(5):contains('Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_sub_type","type":"SelectorText","parentSelectors":["acc_link"],"selector":"tr:contains('Sub Type') td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"acc_image","type":"SelectorImage","parentSelectors":["acc_link"],"selector":".c-prod__thumb img","multiple":false,"delay":0},{"id":"acc-wrap","type":"SelectorElement","parentSelectors":["link"],"selector":"div#product-accessories > div.c-prod-listing","multiple":true,"delay":0}]}

Thank you I tried your code but the same items on the 1st page are missing still
Rik