How to set the delay between requests?

crawler = PlaywrightCrawler(
max_requests_per_crawl=10,
max_request_retries=0,
headless=True,
browser_type='chromium',
)
I want to set 3600ms delay between requests
Was this page helpful?