missing ;

This commit is contained in:
Ralf Vogler 2022-04-30 21:53:03 +02:00
parent 4e90fb67c6
commit f1dd867d39

View file

@ -99,7 +99,7 @@ for (let i = 1; i <= n; i++) {
} catch (e) {
console.log(e);
const p = `screenshots/${new Date().toISOString()}.png`;
await page.screenshot({ path: p, fullPage: true })
await page.screenshot({ path: p, fullPage: true });
console.info('Saved a screenshot of hcaptcha challenge to', p);
console.error('Got hcaptcha challenge. To avoid it, get a link from https://www.hcaptcha.com/accessibility'); // TODO save this link in config and visit it daily to set accessibility cookie to avoid captcha challenge?
}