Crawling for product amount

I know there's an easy and super quick way to check for the amount of products on a glossary page, but can't remember where in SeoTools.
It will make it way easier, and then I don't have to go through more than 200 pages manually to see how many are actually available.

Can you send us some example urls and explain what data point your want to fetch. This can probably be done using XPathOnUrl.

Sure.
https://www.campz.dk/asics-kayano.html – amount of products 33
https://www.campz.dk/bergans-rygsaekke.html – amount of products 118

I have a bunch of other URLs like that, that I would like to make a fast crawling of this to extract the number of products on the page.

I did something similar with Amazon product pages, but I am not sure how it would work in your situation since those example links have progressively loaded content. Does SEOTools continue to scroll through progressively loaded content when it's scraping a page via XPathOnURL?

@tomhouy is right that SeoTools can't handle progressively loaded content as we don't have a headless browser integrated (yet) but in this case we're in luck as the total value of products is available in the source.

Try this:

=XPathOnUrl("http://www.campz.dk/asics-kayano.html";"//span[@class='productCount']")