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

11 lines
263 B
TypeScript

import { PlaywrightCrawler, ProxyConfiguration } from 'crawlee';
const proxyConfiguration = new ProxyConfiguration({
proxyUrls: ['http://proxy-1.com', 'http://proxy-2.com'],
});
const crawler = new PlaywrightCrawler({
proxyConfiguration,
// ...
});