Skip to content

omkarcloud/puppeteer-captcha-solving-tutorial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

9 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

omkar

✨ Solve Captcha in Puppeteer using CapSolver ✨

(Programming Language - Python 3)

puppeter-captcha-solving-tutorial forks Repo stars puppeter-captcha-solving-tutorial License issues

View


🌟 Learn How to Solve Captchas in Puppeteer Using CapSolver πŸ€–

🎯 Overview

This is the final code for the tutorial, which demonstrates how to solve captchas in Puppeteer using CapSolver.

By following this tutorial, you will gain the knowledge to effectively solve captchas, along with best practices to increase the chances of successful captcha solving, such as maintaining consistent user agents and IP addresses.

In the tutorial, we will be solving captchas at recaptcha-demo.appspot.com using CapSolver.

Captcha Form

The tutorial is available as a YouTube video πŸŽ₯, which you can access using the following video:

Puppeteer Captcha Solving Tutorial

πŸš€ Running the Code

If you are interested in seeing the captcha-solving process in action, follow these steps:

1️⃣ Clone the repository πŸ§™β€β™€οΈ:

git clone https://github.com/omkarcloud/puppeter-captcha-solving-tutorial
cd puppeter-captcha-solving-tutorial

2️⃣ Install Dependencies πŸ“¦:

python -m pip install pyppeteer capsolver-python

3️⃣ Get your CapSolver API Key by following the "Setup CapSolver" section of this tutorial. Watch that section in this timestamp.

Store API Key

4️⃣ In main.py, replace YOUR_API_KEY with your CapSolver API Key. πŸ—οΈ

5️⃣ Run the code to solve the captcha. πŸƒβ€β™€οΈ

python main.py

Once the captcha is successfully solved, you will be greeted with the following success screen 😎.

Solved Captcha Success Page

βœ… Final Code

Just want to see the code? Here it is, read and understand the code to grasp the process of captcha solving.:

import asyncio
from pyppeteer import launch
from capsolver_python import RecaptchaV2Task

# Following code solves a reCAPTCHA v2 challenge using CapSolver.
async def main():
    # Launch Browser.
    browser = await launch({'headless': False})

    # Load the target page.
    captcha_page_url = "https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox.php"
    page = await browser.newPage()
    await page.goto(captcha_page_url)

    # Solve the reCAPTCHA using CapSolver.
    print("Solving captcha")
    capsolver = RecaptchaV2Task("YOUR_API_KEY")

    site_key = "6LfW6wATAAAAAHLqO2pb8bDBahxlMxNdo9g947u9"
    task_id = capsolver.create_task(captcha_page_url, site_key)
    result = capsolver.join_task_result(task_id)

    # Get the solved reCAPTCHA code.
    code = result.get("gRecaptchaResponse")
    print(f"Successfully solved the reCAPTCHA. The solve code is {code}")

    # Set the solved reCAPTCHA code on the form.
    recaptcha_response_element = await page.querySelector('#g-recaptcha-response')
    await page.evaluate(f'(element) => element.value = "{code}"', recaptcha_response_element)

    # Submit the form.
    submit_btn = await page.querySelector('button[type="submit"]')
    await submit_btn.click()

    # Pause the execution so you can see the screen after submission before closing the driver
    input("Captcha Submission Successfull. Press enter to continue")

    # Close Browser.
    await browser.close()

if __name__ == "__main__":
    asyncio.get_event_loop().run_until_complete(main())

Want to understand the code? Watch the tutorial!

Puppeteer Captcha Solving Tutorial


Love It? Star It! ⭐

Star History Chart