How to select multiple elements in a sequence (not using selector)?

Describe the problem.
I need to select the elements div.hidden_content1, div.hidden_content2, div.hidden_content3, div.hidden_content4, and so on, all the way to div.hidden_content122. How would I write this in a way that Web Scraper recognizes it (aside from writing out each one individually)?

The selector tool doesn't work on this particular page because elements are hidden unless I click on them.

Url: https://wfneurology.org/member-societies

Sitemap:
{id:"sitemap code"}

You can write it like this: div[class*="hidden_content"] . More info on CSS selector types: https://www.w3schools.com/cssref/css_selectors.asp

This worked perfectly. Thanks so much.