Element/Link selector load page instead of select element

I'm trying to scrape listing information from the following site: https://www.bizbuysell.com/businesses-for-sale/?q=YmZzX3NvcnQ9NzA6MTAmaT1MMUEy

I've created a pagination selector to go through each page. I'm trying to create a link selector to open each listing link and extract data.

When I click the title of each listing, it opens that listing in a new page without selecting the link. I can make it work by using an element selector and then switching the type back to selectorlink but then it doesn't extract any data. What am I doing wrong?

Sitemap:
{"_id":"bizbuysell-fitness","startUrl":["https://www.bizbuysell.com/businesses-for-sale/?q=YmZzX3NvcnQ9NzA6MTAmaT1MMUEy"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":".desktop-SR-pagination li:nth-of-type(n+3) a","multiple":true,"delay":0},{"id":"Listing Link","type":"SelectorElement","parentSelectors":["_root","pagination"],"selector":"b.visible-desktop","multiple":true,"delay":0}]}

For such sites, you can use the WS keyboard shortcuts:

  1. Click the checkbox for "Enable key events". Text will change to show the shortcut keys S | P | C
  2. Hover the mouse over the element you want
  3. Press 'S' to select the element and it will turn red
  4. Click 'Done Selecting' to finish selecting.

Thank you for your help. While this did work, when I run the scraper the link selector doesn't open any of the links to extract the pertinent data (asking price, EBITDA, location, etc), the scraper simply navigates through the pagination selector.

Is Link Selector the appropriate selector to be using for "clicking" each business for sale?

Sitemap:
{"_id":"bizbuysell-fitness","startUrl":["https://www.bizbuysell.com/businesses-for-sale/?q=YmZzX3NvcnQ9NzA6MTAmaT1MMUEy"],"selectors":[{"id":"pagination","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":".desktop-SR-pagination li:nth-of-type(n+3) a","multiple":true,"delay":0},{"id":"Listing Link","type":"SelectorLink","parentSelectors":["_root","pagination"],"selector":"b.visible-desktop","multiple":true,"delay":0},{"id":"Title","type":"SelectorText","parentSelectors":["Listing Link"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"Location","type":"SelectorText","parentSelectors":["Listing Link"],"selector":"h2.gray","multiple":false,"regex":"","delay":0},{"id":"Asking Price","type":"SelectorText","parentSelectors":["Listing Link"],"selector":".asking b","multiple":false,"regex":"","delay":0}]}