moderate-tomatoM
Apify & Crawlee14mo ago
2 replies
moderate-tomato

Is there a way to get the number of enqueued links?

I have the following code for AdaptivePlaywrightCrawler and I want to log the number of enqueued links after calling enqueueLinks.

    router.addDefaultHandler(async ({ request, enqueueLinks, parseWithCheerio, querySelector, log, page }) => {
      
      await enqueueLinks({
        strategy: 'same-domain',
        globs: globs,
        transformRequestFunction: (request) => {

          return request;
        },
      });

    });
Was this page helpful?