Are there actually any ressources on building a scraper with crawlee except the one in the docs?
Where do I set all the browser context for example?
const launchPlaywright = async () => {
const browser = await playwright["chromium"].launch({
headless: true,
args: ["--disable-blink-features=AutomationControlled"],
});
const context = await browser.newContext({
viewport: { width: 1280, height: 720 },
userAgent:
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3",
geolocation: { longitude: 7.8421, latitude: 47.9978 },
permissions: ["geolocation"],
locale: "en-US",
storageState: "playwright/auth/user.json",
});
return await context.newPage();
};