Only scraping data from the first page

I am trying to scrape the name and email from this site: Staff Directory - Olentangy Local School District

But I only scrape the first page and not the second onwards. This is my sitemap:
{"_id":"NameEmailMultiplePages","startUrl":["https://www.olentangy.k12.oh.us/about/staff-directory"],"selectors":[{"id":"Pagination","paginationType":"clickMore","parentSelectors":["_root","Pagination"],"selector":"a.fsNextPageLink[aria-describedby='ae_describe_pagination']","type":"SelectorPagination"},{"id":"Container","multiple":true,"parentSelectors":["Pagination"],"selector":"div.fsConstituentItem","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["Container"],"regex":"","selector":"h3","type":"SelectorText"},{"id":"Email","multiple":false,"parentSelectors":["Container"],"regex":"","selector":"span.fsEmailIcon","type":"SelectorText"}]}

You don't need pagination, because there is a page range to be used.
Here is you sitemap for page 1-4 (you can change whatever range you like until page 400:

{"_id":"NameEmailMultiplePages","startUrl":["https://www.olentangy.k12.oh.us/about/staff-directory?const_page=[1-5]&"],"selectors":[{"id":"element","multiple":true,"parentSelectors":["_root"],"selector":"div.fsConstituentItem","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["element"],"regex":"","selector":"h3","type":"SelectorText"},{"extractAttribute":"href","id":"Email","multiple":false,"parentSelectors":["element"],"selector":"a[title=\"Email\"]","type":"SelectorElementAttribute"}]}

Hi, you can try the following sitemap:

{"_id":"NameEmailMultiplePages1","startUrl":["https://www.olentangy.k12.oh.us/about/staff-directory"],"selectors":[{"id":"pagination","paginationType":"clickMore","parentSelectors":["_root","pagination"],"selector":"div.fsElementPagination:nth-of-type(1) a.fsNextPageLink","type":"SelectorPagination"},{"id":"element","multiple":true,"parentSelectors":["pagination"],"selector":"div.fsConstituentItem","type":"SelectorElement"},{"id":"Name","multiple":false,"parentSelectors":["element"],"regex":"","selector":"h3","type":"SelectorText"},{"extractAttribute":"href","id":"Email","multiple":false,"parentSelectors":["element"],"selector":"a[title=\"Email\"]","type":"SelectorElementAttribute"}]}

I tested it with a smaller page count by narrowing down the results and changing the start URL, worked fine.