There seems to be a regression in v4, where AdaptivePlaywrightCrawler doesn't process the provided requests.
import { AdaptivePlaywrightCrawler } from './packages/playwright-crawler/dist/internals/adaptive-playwright-crawler.js';
const crawler = new AdaptivePlaywrightCrawler({
requestHandler: ({ request, log }) => {
log.info(`Processing ${request.loadedUrl}...`);
},
});
await crawler.run(['https://example.com']);
Expected behaviour: the crawler prints "Processing example.com".
Current behaviour:

There seems to be a regression in v4, where
AdaptivePlaywrightCrawlerdoesn't process the provided requests.Expected behaviour: the crawler prints
"Processing example.com".Current behaviour: