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
- call website
- click on the 1st link
- 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}]}