Scraper is scraping only unique values

Describe the problem.
I am looking to discover what real estate agent is listing the most homes in a given area. I want to scrape the agent for each home and then run a pivot table on the results to view the count for each agent. However, when I scrape his data, WebScraper will scrape each agent only once. if they appear on multiple listings, the duplicates are ignored. How do I get around this?

Url: Find the Best CRE Properties for Sale | OneKey® MLS

Sitemap:
Sitemaps
Sitemap MLSLIForSaleV2
Create new sitemap
{"_id":"MLSLIForSaleV2","startUrl":["Find the Best CRE Properties for Sale | OneKey® MLS input#status-option-3","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","multiple":true,"selector":".justify-end input#status-option-3"},{"id":"List","parentSelectors":["_root"],"type":"SelectorElementClick","clickActionType":"real","clickElementSelector":"button.flex.p-4","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","multiple":false,"selector":"button.flex.p-4"},{"id":"next","parentSelectors":["_root","next"],"paginationType":"auto","type":"SelectorPagination","selector":".fa-arrow-right path"},{"id":"Listing Agent","parentSelectors":["next"],"type":"SelectorText","selector":"div:nth-of-type(n+22) div.leading-tight.text-xs","multiple":true,"regex":""}]}

Hi,

This happens due to the deduplication feature of the Pagination selector. One way to work around this is to use Element click instead of Pagination:

{"_id":"MLSLIForSaleV2","startUrl":["https://onekeymls.com/homes/unparsed-sound%20beach,%20ny/"],"selectors":[{"clickActionType":"real","clickElementSelector":".justify-end input#status-option-3","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"closed","multiple":true,"parentSelectors":["_root"],"selector":".justify-end input#status-option-3","type":"SelectorElementClick"},{"clickActionType":"real","clickElementSelector":"button.flex.p-4","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"List","multiple":false,"parentSelectors":["_root"],"selector":"button.flex.p-4","type":"SelectorElementClick"},{"id":"Listing Agent","multiple":true,"parentSelectors":["next"],"regex":"","selector":"div div.leading-tight.text-xs","type":"SelectorText"},{"clickActionType":"real","clickElementSelector":".fa-arrow-right path","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickMore","delay":1000,"discardInitialElements":"do-not-discard","id":"next","multiple":false,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"}]}