How to scrape automatically one website after another?

Hi there, sorry if the question have been asked before but I didn't find the answer in the FAQ.
I'm using the Web scraper Firefox free add-on.

I have very few pages to scrape (around 3 to 5 pages) on many websites.
Instead of doing : "Select sitemap > scrape > (wait) > export data" manually 25 times, I would like the scraping to start with sitemap 1, then sitemap 2 etc.

The selectors ID are identical (for example : "Name", "Price" etc.) on each sitemap so at the final export, the data should fit nicely in the same columns on the excel file.

Is there a way to do that ?
Thanks!

Hard to diagnose without the URLs or sample HTML.
If the web pages are relatively simple and have the same type of data, it may be possible to scrape them with a single sitemap that uses multiple Start URLs.

You can combine selectors in a single data scraper to deal with different websites, e.g. for Name it could be:
div.name,div>div>p.name

The comma act as an "or" to handle two different selectors.