Should link selector be used for links on page

I'm confused if the following use case would warrant use of the link selector or not. The links contained in the below URL are not child pages I don't think.

I'm ultimately trying to get the scraper to open the individual links in the below URL, and scrape the title & mileage from the subsequent link. Finally, i want it to click the load more button and continue scraping until the end. I believe I can use the selector element click for that.

Url: https://bringatrailer.com/bmw/e39-m5/

Example sub-link: https://bringatrailer.com/listing/2000-bmw-m5-141/

Sitemap: {"_id":"bat_e39_m5","startUrl":["https://bringatrailer.com/bmw/e39-m5/"],"selectors":[{"id":"showmorebutton","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div:nth-of-type(n+77) .title a","multiple":true,"delay":2000,"clickElementSelector":".auctions-footer button","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueCSSSelector"},{"id":"links","type":"SelectorLink","parentSelectors":["showmorebutton"],"selector":"div:nth-of-type(n+77) .title a","multiple":false,"delay":0},{"id":"","type":"SelectorText","parentSelectors":["links"],"selector":"","multiple":false,"regex":"","delay":0}]}

You can just use type: Link for those links. However you will face issues with the "Load more". This site needs some special tricks to scrape properly.