@crawlee/playwrightFunctionscreatePlaywrightRouterVersion: 3.0createPlaywrightRouter CallablecreatePlaywrightRouter<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 parametersContext: PlaywrightCrawlingContext<Dictionary<any>, Context> = PlaywrightCrawlingContext<Dictionary<any>>Returns 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.