Skip to main content
Version: 3.0

createPlaywrightRouter

Callable

  • createPlaywrightRouter<Context>(): RouterHandler<Context>

  • Creates new Router instance that works based on request labels. This instance can then serve as a requestHandler of your PlaywrightCrawler. Defaults to the PlaywrightCrawlingContext.

    Serves as a shortcut for using Router.create<PlaywrightCrawlingContext>().

    import { PlaywrightCrawler, createPlaywrightRouter } from 'crawlee';

    const router = createPlaywrightRouter();
    router.addHandler('label-a', async (ctx) => {
    ctx.log.info('...');
    });
    router.addDefaultHandler(async (ctx) => {
    ctx.log.info('...');
    });

    const crawler = new PlaywrightCrawler({
    requestHandler: router,
    });
    await crawler.run();

    Type parameters

    • Context: PlaywrightCrawlingContext<Dictionary<any>, Context> = PlaywrightCrawlingContext<Dictionary<any>>

    Returns RouterHandler<Context>