Files
apify--crawlee/docs/guides/proxy_management_session_puppeteer.ts
2026-07-13 13:23:39 +08:00

13 lines
277 B
TypeScript

import { PuppeteerCrawler, ProxyConfiguration } from 'crawlee';
const proxyConfiguration = new ProxyConfiguration({
/* opts */
});
const crawler = new PuppeteerCrawler({
useSessionPool: true,
persistCookiesPerSession: true,
proxyConfiguration,
// ...
});