berstend / puppeteer-extra

💯 Teach puppeteer new tricks through plugins.
https://extra.community
MIT License
6.23k stars 731 forks source link

Fix user agent override silent failure #856

Open Pantela996 opened 6 months ago

Pantela996 commented 6 months ago

This PR provides a fix for the scenario when the puppeteer-extra-stealth-plugin fails on startup without raising the error. This scenario can be suppressed locally by defining the process.on('unhandledRejection') on the local environment, but on the lambda environment, this listener is not getting invoked since lambda prefers to exit directly on this type of error.

For this reason, the send invocation needs to be awaited for the error to be propagated properly.