1
0

fix: Scraper
All checks were successful
Remote Deploy / deploy (push) Successful in 3s

This commit is contained in:
2025-09-02 08:05:04 +02:00
parent f55a996360
commit 156be69826

View File

@@ -79,8 +79,10 @@ async function handleError(page, err) {
await page.type('input[type="email"]', EMAIL, { delay: 50 });
await page.keyboard.press('Enter');
} catch {
await page.waitForSelector(".table");
await page.click('.table');
try {
await page.waitForSelector(".table");
await page.click('.table');
} catch {}
}
await new Promise(r => setTimeout(r, 2000));