I'm not sure if WebScraper is scraping or not

I am trying to scrape this dictionary but so far I cannot tell if my sitemap works. When I close the tab which is scraping and reload the data, I don't get anything. I have temporarily changed pagination to click once to test if I am getting any data, but haven't yet.

Any help would be much appreciated, although I may be a little difficult to work with. Thank you!

Url: Charlton T. Lewis, Charles Short, A Latin Dictionary, A

Sitemap:
{"_id":"perseus","startUrl":["http://www.perseus.tufts.edu/hopper/text?doc=Perseus:text:1999.04.0059"],"selectors":[{"id":"pagination","paginationType":"clickOnce","parentSelectors":["_root","pagination"],"selector":"#header_nav img[alt='next']","type":"SelectorPagination"},{"delay":0,"id":"text","multiple":true,"parentSelectors":["pagination"],"selector":"div.text","type":"SelectorElement"},{"delay":0,"id":"article","multiple":false,"parentSelectors":["text"],"regex":"","selector":"_parent_","type":"SelectorText"}]}

@rembrandt Hi, it seems that you can use the 'Link' type pagination instead of a 'click' in this case.

Example:

{"_id":"perseus","startUrl":["http://www.perseus.tufts.edu/hopper/text?doc=Perseus:text:1999.04.0059"],"selectors":[{"id":"pagination","paginationType":"linkFromHref","parentSelectors":["_root","pagination"],"selector":"div#header_nav a.arrow:has(img[src=\"/img/next.gif\"])","type":"SelectorPagination"},{"delay":0,"id":"text","multiple":true,"parentSelectors":["pagination"],"selector":"div.text","type":"SelectorElement"},{"delay":0,"id":"article","multiple":false,"parentSelectors":["text"],"regex":"","selector":"_parent_","type":"SelectorText"}]}

Thank you very much!