How to Solve Captcha in Puppeteer using CapSolver

Sora Fujimoto
AI Solutions Architect
17-Jul-2023
How to Solve Captcha in Puppeteer using CapSolver

🎯 Overview
This tutorial will guide you through the process of solving Google reCaptchas in Puppeteer using CapSolver.
CapSolver is a Captcha Solving Service that helps you solve Captchas.
We use AI-powered Captcha Solving Algorithms, which result in faster solving speed and significantly reduced costs, providing an excellent developer experience.
The goal will be to solve the captcha located at recaptcha-demo.appspot.com using CapSolver.

During the tutorial, we will take the following steps to solve the above Captcha:
- Install the required dependencies.
- Find the site key of the Captcha Form.
- Set up CapSolver.
- Solve the captcha.
📦 Install Required Dependencies
To get started, we need to install the following dependencies for this tutorial:
- capsolver-python: The official Python SDK for easy integration with the CapSolver API.
- pyppeteer: pyppeteer is a Python port of Puppeteer.
Install these dependencies by running the following command:
python -m pip install pyppeteer capsolver-python
Now, Create a file named main.py
where we will write the Python code for solving captchas.
bash
touch main.py
🔑 Get Site Key of Captcha Form
The Site Key is a unique identifier provided by Google that uniquely identifies each Captcha.
To solve the Captcha, it is necessary to send the Site Key to CapSolver.
Let's find the Site Key of the Captcha Form by following these steps:
- Visit the Captcha Form.

- Open Chrome Dev Tools by pressing
Ctrl
/Cmd
+Shift
+I
. - Go to the
Elements
tab and search fordata-sitekey
. Copy the attribute's value.

- Store the Site Key in a secure place as it will be used in a later section when we submit the captcha to CapSolver.
🤖 Setup CapSolver
To solve captchas using CapSolver, you need to create a CapSolver account, add funds to your account, and obtain an API Key. Follow these steps to set up your CapSolver account:
- Sign up for a CapSolver account by visiting capsolver.com.

- Add funds to your CapSolver account using PayPal, Crypto Currencies, or other listed payment methods. Please note that the minimum deposit amount is $6, and additional taxes apply.

- Now, copy the API Key provided by CapSolver and store it securely for later usage.

💡 Solving the Captcha
Now, we will proceed to solving the captcha using CapSolver. The overall process involves three steps:
- Launching the browser and visiting the captcha page using pyppeteer.
- Solving the captcha using CapSolver.
- Submitting the captcha response.
Read the following Code Snippets to understand these steps.
Launching the browser and visiting the captcha page:
python
# Launch the 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)
Solving the captcha using CapSolver:
python
# Solve the reCAPTCHA using CapSolver.
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")
Setting the solved captcha on the form and submitting it:
python
# 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()
🚀 Putting it all Together
Below is the complete code for the tutorial, which will solve the captcha using CapSolver.
python
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())
Paste the above code into your main.py
file. Replace YOUR_API_KEY
with your API Key and run the code.
You will observe that the captcha will be solved, and you will be greeted with a success page 🥳.

✅ Conclusion
Congratulations! You have successfully learned how to solve captchas using CapSolver. Here are the key learnings from this tutorial:
- CapSolver offers a fast and cost-effective solution for captcha solving.
- The general process to solve the captcha involves:
- Creating an account on CapSolver and adding funds to it.
- Finding the Site Key of the target captcha form.
- Submitting the Site Key and Page URL to CapSolver to solve the captcha.
- Setting the solved captcha response on the appropriate element and submitting the form.
Thank you for your time. 🙏 We wish you good luck on your automation journey! 🚀
🤔 FAQs
What is the Cost of Solving Captchas?
We employ AI-powered captcha solving algorithms instead of human solvers, resulting in significantly lower captcha solving costs. Hence, our rates are highly competitive in the market.
For example, the cost of solving Google v2/v3 captchas ranges from 0.8 to 1.
To learn more about our pricing in detail, we encourage you to visit our pricing page here.
I am successfully able to solve reCaptcha located at recaptcha-demo.appspot.com but when I try to solve anothet reCaptcha, it does not get solved. Why?
In this tutorial, we solved Google reCaptcha V2, but your target website is most likely using Google reCaptcha V3.
When solving Google reCaptcha V3, it is important to ensure that the IP address and user agent used to submit the captcha match the ones used to solve it.
Once you have residential proxies available, you can update the code as follows to solve the captcha successfully:
- Use a proxy when launching Puppeteer.
python
browser = await launch({'args': ['--proxy-server=ip:port'], 'headless': False})
- Set the proxy and user agent after creating the proxy task as follows:
python
capsolver = RecaptchaV2Task("YOUR_API_KEY")
capsolver.set_proxy(proxy_address='proxy_ip', proxy_port='proxy_port', proxy_login='user', proxy_password='password')
browser_useragent = browser.userAgent()
capsolver.set_user_agent(browser_useragent)
Compliance Disclaimer: The information provided on this blog is for informational purposes only. CapSolver is committed to compliance with all applicable laws and regulations. The use of the CapSolver network for illegal, fraudulent, or abusive activities is strictly prohibited and will be investigated. Our captcha-solving solutions enhance user experience while ensuring 100% compliance in helping solve captcha difficulties during public data crawling. We encourage responsible use of our services. For more information, please visit our Terms of Service and Privacy Policy.
More

Automating CAPTCHA Challenges: The Best Chrome Extensions
At the end of this tutorial, you'll have a solid understanding of automating CAPTCHA Challenges: The Best Chrome Extensions.

Ethan Collins
09-Jul-2024

Best Auto CAPTCHA solving extension on Mozilla firefox
By using some extensions designed for Mozilla Firefox, we can easily automate this process, saving valuable time and effort

Lucas Mitchell
04-Jul-2024

Best Google Chrome extension & Mozila FirFox Extension to Solve Captcha Automatically
By using some extensions designed for Google Chrome and Mozilla Firefox, we can easily automate this process, saving valuable time and effort

Lucas Mitchell
14-Jun-2024

How to Identify if Google reCAPTCHA is Invisible | By using CapSolver Extension
Learn how to identify if Google reCAPTCHA is invisible using the CapSolver extension. This guide provides step-by-step instructions for detecting reCAPTCHA parameters, ensuring you can manage and troubleshoot website security measures effectively.

Sora Fujimoto
27-May-2024

How to find Google reCAPTCHA site key | By using CapSolver Extension
The CapSolver extension makes it easier for inexperienced newcomers to get started, and more importantly, it helps to solve reCAPTCHA

Rajinder Singh
24-May-2024

Recaptcha Solver | Automatically solves Recaptcha in browser
In this article, we will show you how to solve reCaptcha on the browser.

Ethan Collins
21-May-2024