Why data preview is much faster than real scraping?

Describe the problem.
When I click “data preview” the result shows up immediately ,but when i click “scrape” it takes a long time to scrape the website.
I want to know why and how to speed up the process, thank you very much.

Url: http://www.itcast.cn/channel/teacher.shtml#ac

Sitemap:
{"_id":"itcast","startUrl":["http://www.itcast.cn/channel/teacher.shtml#ac"],"selectors":[{"id":"asdf","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"div.tea_txt.tea_txt_cur li","multiple":true,"delay":0,"clickElementSelector":"div.tea_hd li","clickType":"clickOnce","discardInitialElements":true,"clickElementUniquenessType":"uniqueText"},{"id":"name","type":"SelectorText","parentSelectors":["asdf"],"selector":"h3","multiple":false,"regex":"","delay":0},{"id":"title","type":"SelectorText","parentSelectors":["asdf"],"selector":"h4","multiple":false,"regex":"","delay":0},{"id":"discription","type":"SelectorText","parentSelectors":["asdf"],"selector":"p","multiple":false,"regex":"","delay":0}]}

Because when you are using the data preview, you have already rendered the page, so the data can be previewed much faster.

When you start a scrape, there is a 2 second Page Load Delay and 2 second Request Interval, that is there to make sure that the page loads properly, before the scraper tries to extract any information, otherwise the scraper will try to scrape the page before it has rendered, will find no information and stop without extracting any data.