วิธีใช้ปลั๊กอิน Anti-Captcha ใน Puppeteer หรือ Selenium
Puppeteer และ Selenium เป็นสองเครื่องมือหลักสำหรับการทำงานอัตโนมัติของเบราว์เซอร์ และปลั๊กอินของเราจะรวมเข้ากับทั้งสองเครื่องมือได้อย่างราบรื่น บทความนี้จะแสดงวิธีใช้งานใน Puppeteer และ Selenium สำหรับภาษาโปรแกรม NodeJS และ Python ตามลำดับ หากคุณต้องเลือก เราขอแนะนำให้ใช้ NodeJS+Puppeteer สำหรับสภาพแวดล้อมดั้งเดิม
1. ติดตั้ง Dependencies สำหรับ NodeJS เพียงติดตั้งแพ็กเกจ npm ที่ระบุด้านล่าง สำหรับ Python ติดตั้งแพ็กเกจและดาวน์โหลด "chromedriver" ที่เรียกใช้งานได้จากหน้านี้ เวอร์ชันของไดรเวอร์ควรตรงกับเวอร์ชัน Chrome ที่ติดตั้งในระบบของคุณ
npm install adm-zip puppeteer puppeteer-extra puppeteer-extra-plugin-stealth
2. ดาวน์โหลดปลั๊กอินในเวอร์ชัน ZIP สำหรับ Chrome แล้วแตกไฟล์ลงในโฟลเดอร์โปรเจกต์ของคุณ เวอร์ชันจริงสามารถดูได้ที่นี่ คุณยังสามารถทำได้แบบโปรแกรมดังนี้
//npm install adm-zip
const https = require('https')
const fs = require('fs');
const AdmZip = require("adm-zip");
const pluginURL = 'https://antcpt.com/anticaptcha-plugin.zip';
(async () => {
// ดาวน์โหลดปลั๊กอิน
await new Promise((resolve) => {
https.get(pluginURL, resp => resp.pipe(fs.createWriteStream('./plugin.zip').on('close', resolve)));
})
// แตกไฟล์
const zip = new AdmZip("./plugin.zip");
await zip.extractAllTo("./plugin/", true);
})();
3. จากนั้น ให้กำหนดค่าคีย์ API ของคุณในไฟล์ ./plugin/js/config_ac_api_key.js คุณสามารถค้นหาคีย์ API ของคุณได้ในพื้นที่เฉพาะลูกค้า คุณจะต้องมียอดคงเหลือเป็นบวกจึงจะใช้งานได้
const apiKey = 'API_KEY_32_BYTES';
if (fs.existsSync('./plugin/js/config_ac_api_key.js')) {
let confData = fs.readFileSync('./plugin/js/config_ac_api_key.js', 'utf8');
confData = confData.replace(/antiCapthaPredefinedApiKey = ''/g, `antiCapthaPredefinedApiKey = '${apiKey}'`);
fs.writeFileSync('./plugin/js/config_ac_api_key.js', confData, 'utf8');
} else {
console.error('plugin configuration not found!')
}
4. เริ่มต้นเบราว์เซอร์ด้วยปลั๊กอิน สำหรับ Puppeteer เราขอแนะนำปลั๊กอิน 'puppeteer-extra-plugin-stealth' สำหรับแพ็กเกจ 'puppeteer-extra' ซึ่งซ่อนสัญญาณทั้งหมดของเบราว์เซอร์ Chromium แบบอัตโนมัติทางเว็บ
//npm install puppeteer puppeteer-extra puppeteer-extra-plugin-stealth
const puppeteer = require('puppeteer-extra');
const StealthPlugin = require('puppeteer-extra-plugin-stealth');
puppeteer.use(StealthPlugin());
(async () => {
const browser = await puppeteer.launch({
headless: false,
ignoreDefaultArgs: [
"--disable-extensions",
"--enable-automation"
],
args: [
'--disable-web-security',
'--disable-features=IsolateOrigins,site-per-process',
'--allow-running-insecure-content',
'--disable-blink-features=AutomationControlled',
'--no-sandbox',
'--mute-audio',
'--no-zygote',
'--no-xshm',
'--window-size=1920,1080',
'--no-first-run',
'--no-default-browser-check',
'--disable-dev-shm-usage',
'--disable-gpu',
'--enable-webgl',
'--ignore-certificate-errors',
'--lang=en-US,en;q=0.9',
'--password-store=basic',
'--disable-gpu-sandbox',
'--disable-software-rasterizer',
'--disable-background-timer-throttling',
'--disable-backgrounding-occluded-windows',
'--disable-renderer-backgrounding',
'--disable-infobars',
'--disable-breakpad',
'--disable-canvas-aa',
'--disable-2d-canvas-clip-aa',
'--disable-gl-drawing-for-tests',
'--enable-low-end-device-mode',
'--disable-extensions-except=./plugin',
'--load-extension=./plugin'
]
});
const page = await browser.newPage();
})();
5. นำทางไปยังหน้าเป้าหมายและกรอกแบบฟอร์มหากต้องการ ปลั๊กอินจะรับและเริ่มแก้ reCAPTCHA โดยอัตโนมัติ
(async () => {
const url = 'https://anti-captcha.com/demo/?page=recaptcha_v2_textarea';
const login = 'Test login';
const password = 'Test password';
try {
await page.goto(url, {
waitUntil: "networkidle0"
});
} catch (e) {
console.error('err while loading the page: '+e);
}
// ปิดใช้งานข้อผิดพลาดการหมดเวลาของการนำทาง
await page.setDefaultNavigationTimeout(0);
await page.$eval('#login', (element, login) => {
element.value = login;
}, login);
await page.$eval('#password', (element, password) => {
element.value = password;
}, password);
})();
6. ถัดไปเป็นส่วนที่ยุ่งยากเล็กน้อย แบบฟอร์มบนเว็บบางรายการกำหนดให้ผู้ใช้กดปุ่มส่งหลังจากแก้ reCAPTCHA แล้ว ส่วนอื่นๆ ใช้การเรียกกลับและส่งโดยอัตโนมัติ ในกรณีแรกเราต้องการกดปุ่มส่งทันทีหลังจากแก้ reCAPTCHA แล้ว หากต้องการดำเนินการดังกล่าวในเวลาที่เหมาะสม เพียงรอให้ตัวเลือก .antigate_solver.solved ปรากฏขึ้นแล้วกดปุ่มส่ง
// รอให้ตัวเลือก "solved" ปรากฏขึ้น
await page.waitForSelector('.antigate_solver.solved').catch(error => console.log('failed to wait for the selector'));
console.log('{{ $t('articles.how-to-integrate.code-comments.recaptcha-solved') }}');
// กดปุ่มส่ง
await Promise.all([
page.click('#submitButton'),
page.waitForNavigation({ waitUntil: "networkidle0" })
]);
console.log('งานเสร็จสมบูรณ์ แบบฟอร์มที่มีการบายพาส reCAPTCHA');
แค่นี้แหละ กรอกแบบฟอร์มแล้ว reCAPTCHA จะได้รับการแก้และบายพาส ตัวอย่างโค้ดแบบเต็มได้ล่าง
// first run the following to install required npm packages:
//
// npm install adm-zip follow-redirects puppeteer puppeteer-extra puppeteer-extra-plugin-stealth
//
//
const https = require('follow-redirects').https;
const fs = require('fs');
const AdmZip = require("adm-zip");
const apiKey = 'YOUR_API_KEY_HERE!';
const pluginURL = 'https://antcpt.com/anticaptcha-plugin.zip';
const url = 'https://anti-captcha.com/demo/?page=recaptcha_v2_textarea';
const login = 'Test login';
const password = 'Test password';
let page = null;
const puppeteer = require('puppeteer-extra');
const StealthPlugin = require('puppeteer-extra-plugin-stealth');
puppeteer.use(StealthPlugin());
(async () => {
// ดาวน์โหลดปลั๊กอิน
await new Promise((resolve) => {
https.get(pluginURL, resp => resp.pipe(fs.createWriteStream('./plugin.zip').on('close', resolve)));
})
// แตกไฟล์
const zip = new AdmZip("./plugin.zip");
await zip.extractAllTo("./plugin/", true);
// ตั้งค่าคีย์ API ในไฟล์กำหนดค่า
await new Promise((resolve, reject) => {
if (fs.existsSync('./plugin/js/config_ac_api_key.js')) {
let confData = fs.readFileSync('./plugin/js/config_ac_api_key.js', 'utf8');
confData = confData.replace(/antiCapthaPredefinedApiKey = ''/g, `antiCapthaPredefinedApiKey = '${apiKey}'`);
fs.writeFileSync('./plugin/js/config_ac_api_key.js', confData, 'utf8');
resolve();
} else {
console.error('plugin configuration not found!')
reject();
}
});
// ตั้งค่าตัวเลือกการเปิดใช้เบราว์เซอร์
const options = {
headless: false,
ignoreDefaultArgs: [
"--disable-extensions",
"--enable-automation"
],
args: [
'--disable-web-security',
'--disable-features=IsolateOrigins,site-per-process',
'--allow-running-insecure-content',
'--disable-blink-features=AutomationControlled',
'--no-sandbox',
'--mute-audio',
'--no-zygote',
'--no-xshm',
'--window-size=1920,1080',
'--no-first-run',
'--no-default-browser-check',
'--disable-dev-shm-usage',
'--disable-gpu',
'--enable-webgl',
'--ignore-certificate-errors',
'--lang=en-US,en;q=0.9',
'--password-store=basic',
'--disable-gpu-sandbox',
'--disable-software-rasterizer',
'--disable-background-timer-throttling',
'--disable-backgrounding-occluded-windows',
'--disable-renderer-backgrounding',
'--disable-infobars',
'--disable-breakpad',
'--disable-canvas-aa',
'--disable-2d-canvas-clip-aa',
'--disable-gl-drawing-for-tests',
'--enable-low-end-device-mode',
'--disable-extensions-except=./plugin',
'--load-extension=./plugin'
]
}
try {
// เปิดเบราว์เซอร์ด้วยปลั๊กอิน
const browser = await puppeteer.launch();
page = await browser.newPage();
} catch (e) {
console.log('could not launch browser: '+e.toString())
return;
}
// นำทางไปยังหน้าเป้าหมาย
try {
await page.goto(url, {
waitUntil: "networkidle0"
});
} catch (e) {
console.error('err while loading the page: '+e);
}
// ปิดใช้งานข้อผิดพลาดการหมดเวลาของการนำทาง
await page.setDefaultNavigationTimeout(0);
// กรอกแบบฟอร์ม
await page.$eval('#login', (element, login) => {
element.value = login;
}, login);
await page.$eval('#password', (element, password) => {
element.value = password;
}, password);
// รอให้ตัวเลือก "solved" ปรากฏขึ้น
await page.waitForSelector('.antigate_solver.solved').catch(error => console.log('failed to wait for the selector'));
console.log('{{ $t('articles.how-to-integrate.code-comments.recaptcha-solved') }}');
// กดปุ่มส่ง
await Promise.all([
page.click('#submitButton'),
page.waitForNavigation({ waitUntil: "networkidle0" })
]);
console.log('แก้ reCAPTCHA แล้ว');
})();
โบนัส: มีเคล็ดลับในการเรียกใช้ปลั๊กอินในโหมด Headless เนื่องจาก Chrome ไม่รองรับการทำงานอัตโนมัติของเบราว์เซอร์กับปลั๊กอิน ใช้ยูทิลิตีชื่อ Xvfb ซึ่งจะจัดเตรียมเดสก์ท็อปเสมือนสำหรับแอปพลิเคชันของคุณ
# ติดตั้งแพ็กเกจ
apt-get install -y xvfb
# ตั้งค่าตัวแปรการแสดงผล
export DISPLAY=:0
# เริ่ม Xvfb daemon ในเบื้องหลัง (เพียงครั้งเดียว)
/usr/bin/Xvfb :0 -screen 0 1024x768x24 &
# รอสักครู่ให้ปรากฏขึ้น (เพียงครั้งเดียว)
sleep 5
# เพิ่มคำนำหน้า "xvfb-run" ให้กับสคริปต์ "node" หรือ "python"
xvfb-run node myscript.js
# หรือ
xvfb-run python myscript.py