Scraper not pulling data

I have created a few scrapes, but I cant's seem to get this one working. It should be a simple scrape, I'm not sure which selectors to use because this config / design is unknown to me. Basically what I'm trying to do is

  1. call website
  2. click on the 1st link
  3. list per row the state, county name and county web link.

I removed the state as I thought this would simplify the scrape and I tried with scroll and without scrolling. The test seem to work at each step but I cant to seem to pull any data. I dont see any errors or warnings.

Thank you in advance.....

Url: http://realauction.com/client-sites

Sitemap:
{"_id":"tlc_real_auction","startUrl":["http://realauction.com/client-sites"],"selectors":[{"id":"tax_lien_auction","type":"SelectorLink","parentSelectors":["_root"],"selector":"a.tab.w--current","multiple":false,"delay":0},{"id":"state_all_counties","type":"SelectorElementScroll","parentSelectors":["tax_lien_auction"],"selector":".w--tab-active a","multiple":true,"delay":0},{"id":"county_name","type":"SelectorText","parentSelectors":["state_all_counties"],"selector":"div.client-name","multiple":false,"regex":"","delay":0},{"id":"county_link","type":"SelectorText","parentSelectors":["state_all_counties"],"selector":"div.client-website","multiple":false,"regex":"","delay":0}]}

The first Link selector is not valid/necessary, as the start URL has the correct tab open form the get-go.

Also, the scroll is not required as all of the items are rendered already.

This should work:

{"_id":"tlc_real_auction","startUrl":["http://realauction.com/client-sites"],"selectors":[{"id":"element","type":"SelectorElement","parentSelectors":["_root"],"selector":".w--tab-active a","multiple":true,"delay":0},{"id":"county_name","type":"SelectorText","parentSelectors":["element"],"selector":"div.client-name","multiple":false,"regex":"","delay":0},{"id":"county_link","type":"SelectorText","parentSelectors":["element"],"selector":"div.client-website","multiple":false,"regex":"","delay":0}]}

Thank you Webber for you input and solution.I appreciate you, for taking the time to respond.

The table/tree structure is weird, how can I also pull the state info for each county. I tried but I'm not sure how to do this as the state and counties are alternating rows. My results/extract does show the state on a separate rows and all counties are in no particular order

TIA

Url: http://realauction.com/client-sites

Sitemap:
{"_id":"test_1","startUrl":["http://realauction.com/client-sites"],"selectors":[{"id":"all_states","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.auction-header","multiple":true,"delay":0},{"id":"state_name","type":"SelectorText","parentSelectors":["all_states"],"selector":"div.auction-header-state","multiple":false,"regex":"","delay":0},{"id":"auction_period","type":"SelectorText","parentSelectors":["all_states"],"selector":"div.auction-header-msg","multiple":false,"regex":"","delay":0},{"id":"state_county","type":"SelectorElement","parentSelectors":["_root"],"selector":".client-wrapper a","multiple":true,"delay":0},{"id":"county_name","type":"SelectorText","parentSelectors":["state_county"],"selector":"div.client-name","multiple":false,"regex":"","delay":0},{"id":"county_link","type":"SelectorText","parentSelectors":["state_county"],"selector":"div.client-website","multiple":false,"regex":"","delay":0},{"id":"county_open_date","type":"SelectorText","parentSelectors":["state_county"],"selector":"div.client-message","multiple":false,"regex":"","delay":0}]}