Thank you so much for getting back to me! I am still struggling to make it work. I used most of your sitemap. I noticed that you put an extra selector called "name" after the Element Click. What I'm trying to do on each page is go into a series of links. Each time a company link is clicked on, a new window opens. I'm scraping information from each of those pages. So instead of using your "name" selector, I using a link-element-text thing to scrape the info.
When I just do the link (multiple)-element-text think, I can successfully follow all the links on the first page and scrape the information on everything, but when I try to add any rendition of pagination/Element Click, nothing happens.
What can I do to follow and then scrape all of the links, and not just the ones on the first page? Here is my latest sitemap including your Element Click selector:
{"_id":"dallas2","startUrl":["http://dallasmarketcenter.com/lines/"],"selectors":[{"id":"click-element","type":"SelectorElementClick","parentSelectors":["_root","click-element"],"selector":"tr.highlight1","multiple":true,"delay":"2000","clickElementSelector":"table.paging:nth-of-type(2) td.next a","clickType":"clickMore","discardInitialElements":false,"clickElementUniquenessType":"uniqueCSSSelector"},{"id":"name link","type":"SelectorLink","parentSelectors":["_root","click-element"],"selector":"td:nth-of-type(1) a","multiple":true,"delay":"2000"},{"id":"element","type":"SelectorElement","parentSelectors":["name link"],"selector":"div.container.col-md-6","multiple":false,"delay":0},{"id":"company","type":"SelectorText","parentSelectors":["element"],"selector":"h2 span","multiple":false,"regex":"","delay":0},{"id":"email","type":"SelectorText","parentSelectors":["element"],"selector":"div.primary-email a","multiple":false,"regex":"","delay":0},{"id":"phone","type":"SelectorText","parentSelectors":["element"],"selector":"span.phone-type","multiple":false,"regex":"","delay":0},{"id":"city","type":"SelectorText","parentSelectors":["element"],"selector":"li div div span:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"state","type":"SelectorText","parentSelectors":["element"],"selector":"span:nth-of-type(2)","multiple":false,"regex":"","delay":0}]}
Sorry for all the trouble. I do appreciate the help!