puppeteer-extra-plugin-recaptcha
Version:
A puppeteer-extra plugin to solve reCAPTCHAs and hCaptchas automatically.
10 lines (7 loc) • 305 B
TypeScript
// Extend Playwright interfaces transparently to the end user.
import {} from 'playwright-core'
import { RecaptchaPluginPageAdditions } from './types'
declare module 'playwright-core' {
interface Page extends RecaptchaPluginPageAdditions {}
interface Frame extends RecaptchaPluginPageAdditions {}
}