Add owop captcha bypass
This commit is contained in:
parent
2f46a5ac36
commit
7114896ebe
|
@ -42,4 +42,6 @@ module.exports = {
|
|||
"Breastmilk ♥ 7:45 AM"
|
||||
],
|
||||
|
||||
"owop_captcha_password": process.env.OWOP_CAPTCHA_PASSWORD,
|
||||
|
||||
}
|
||||
|
|
|
@ -19,7 +19,10 @@ global.screenshotter = {
|
|||
}
|
||||
try {
|
||||
await page.goto('http://ourworldofpixels.com');
|
||||
await page.evaluate(function () { OWOP.camera.zoom = 1; });
|
||||
await page.evaluate(function () {
|
||||
localStorage.owopcaptcha = require('./config').owop_captcha_password;
|
||||
OWOP.camera.zoom = 1;
|
||||
});
|
||||
await new Promise(resolve => setTimeout(resolve, 2000));
|
||||
await page.evaluate(function () {
|
||||
for (let butt of document.getElementsByTagName('button')) {
|
||||
|
|
Loading…
Reference in New Issue