Scraping shows "null"

Describe the problem.
where am I wrong ? It is scraping nothing...
note : I'm totally new to webscraper :slight_smile:

Url: http://www.aria-idf.net/annuaire

Sitemap:
{"_id":"agroalim","startUrl":["http://www.aria-idf.net/annuaires/annuaire-adherents/"],"selectors":[{"id":"annuaire","type":"SelectorLink","parentSelectors":["_root"],"selector":"ul.ui-accordion-content.ui-accordion-content-active li.niveau2:nth-of-type(1) a","multiple":true,"delay":0},{"id":"website","type":"SelectorLink","parentSelectors":["annuaire"],"selector":"p:nth-of-type(1) a","multiple":true,"delay":0},{"id":"Contact details","type":"SelectorHTML","parentSelectors":["annuaire"],"selector":"p:nth-of-type(3)","multiple":true,"regex":"","delay":0}]}

The Link selector has been selected incorrectly. Try using 'li.niveau2:nth-of-type(1) a' if the goal is to select the 1st of each list. If not, then get rid of the ':nth-of-type(1)' all together.
Additionally, would strongly suggest visiting the Video Tutorial and Documentation section on webscraper.io site. Will get you up and going with the basics :wink:

thanks, I will try your solution. I've watched the tutorials, and thought I did the job correctly... but not...

now I can't even create a sitemap...