What do You mean by "long delay" ?)
You are using browser. So, in this case, the speed is affected by many factors including the run memory setting, loading resources process, and the required time for rendering the data.
- You can increasy run's running memory;
- try to set proper "waitUntil" event and use blockRequest() util func:
preNavigationHooks: [async (
// {
// blockRequests
// },
gotoOptions) => {
// await blockRequests();
gotoOptions.waitUntil = 'domcontentloaded'; // fastest resolver
}]
blockRequests:
https://crawlee.dev/api/playwright-crawler/namespace/playwrightUtils#blockRequests- Finally You can try Cheerio crawler for its high performance.