UNPKG

clicks-recaptcha-solver

Version:

A powerful automation tool for solving Google reCAPTCHA challenges using Playwright and Puppeteer. This package intelligently detects and simulates human-like interactions, including mouse movements and precise clicks, to bypass reCAPTCHA v2 and other sim

16 lines (15 loc) 598 B
import { Page } from 'playwright-core'; /** * Function to check for the presence of a reCAPTCHA badge on the page. * * @async * @function isFoundReCaptchaBadge * @param {object} page - The page object (e.g., in Puppeteer) where the element will be searched. * @returns {Promise<boolean>} Returns a promise with a boolean value: * true if the reCAPTCHA badge is found, or false if not. * * @example * const isBadgePresent = await isFoundReCaptchaBadge(page); * console.log(isBadgePresent); // true or false */ export declare function isFoundReCaptchaBadge(page: Page): Promise<boolean>;