Spaces:
Sleeping
Sleeping
Update server.js
Browse files
server.js
CHANGED
@@ -26,7 +26,7 @@ fastify.post('/search', async (request, reply) => {
|
|
26 |
const printIntervalTime = 1000;
|
27 |
|
28 |
console.log('[INFO] Launching browser...');
|
29 |
-
const browser = await chromium.launch({ headless:
|
30 |
const context = await browser.newContext({ userAgent: configData.userAgent });
|
31 |
|
32 |
console.log('[INFO] Setting cookies...');
|
|
|
26 |
const printIntervalTime = 1000;
|
27 |
|
28 |
console.log('[INFO] Launching browser...');
|
29 |
+
const browser = await chromium.launch({ headless: true, slowMo: 100 }); // Headed mode for debugging
|
30 |
const context = await browser.newContext({ userAgent: configData.userAgent });
|
31 |
|
32 |
console.log('[INFO] Setting cookies...');
|