We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2782fe commit 3ffa6deCopy full SHA for 3ffa6de
app.js
@@ -53,6 +53,9 @@ async function setupBrowser() {
53
if (TOKEN_2CAPTCHA) { // If token is given then RecaptchaPlugin is activated
54
puppeteer.use(
55
RecaptchaPlugin({
56
+ // We will see Error: [object Object] in logs because PuppeteerExtraPluginRecaptcha is build badly with `Error(response.error)`
57
+ // https://stackoverflow.com/questions/58252067/pass-an-object-with-js-throw-new-error-in-node
58
+ throwOnError: true,
59
provider: {
60
id: '2captcha',
61
token: TOKEN_2CAPTCHA
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "scrapy-puppeteer-service",
3
- "version": "0.4.3",
+ "version": "0.4.4",
4
"private": true,
5
"scripts": {
6
"start": "node ./bin/www"
0 commit comments