auto-captcha-solver
Version:
Automatically detect and solve various captcha types in Playwright & Puppeteer with 2Captcha/CapMonster Cloud integration
9 lines (8 loc) • 343 B
TypeScript
import type { CaptchaData, CaptchaInfo, CaptchaResponse } from '../../../types';
import { Page } from 'playwright';
declare global {
interface Window {
cfCallback?: (token: string) => void;
}
}
export declare function solveWith2Captcha(captchaInfo: CaptchaInfo, captchaData: CaptchaData, page: Page): Promise<CaptchaResponse>;