Issue creating simple sitemap (I am not tech savvy)

Problem:
I am trying to scrape the Title text, and sub text on a results page, click the "view more" button, and then scrape the new data until you can not view any more pages. My site map seems to never collect that data in the correct form, or it leaves blanks. What is the best way to construct my site map for this? URL provided below.

Url: https://bringatrailer.com/auctions/results/
(Start after "Completed Auctions" header)

Sitemap:
None :frowning:

You need to use an Element Click selector to click through the "View More" buttons.

This will get you into the each individual product page:

{"_id":"bringatrailer","startUrl":["https://bringatrailer.com/auctions/results/"],"selectors":[{"id":"element-click","type":"SelectorElementClick","parentSelectors":["_root"],"selector":".auctions-previous div.auctions-item","multiple":true,"delay":"1000","clickElementSelector":"a.auctions-footer-button","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"item-url","type":"SelectorLink","parentSelectors":["element-click"],"selector":".auctions-item-title a","multiple":true,"delay":0}]}