From 5483eaabf898e338556f2091fdba841045a8eed0 Mon Sep 17 00:00:00 2001 From: Dima Dub <38065632+dzmitry-duboyski@users.noreply.github.com> Date: Mon, 5 Aug 2024 12:11:14 +0400 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index fd66440..22626b0 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ Examples of API requests for different captcha types are available on the [Pytho - [Proxies](#proxies) - [Async calls](#async-calls) - [Examples](#examples) + - [Examples using Selenium](#examples-using-selenium) - [Useful articles](#useful-articles) - [Get in touch](#get-in-touch) - [Join the team 👪](#join-the-team-) @@ -512,6 +513,9 @@ captcha_result = asyncio.run(captchaSolver(image)) ## Examples Examples of solving all supported captcha types are located in the [examples] directory. +## Examples using Selenium +Also we have a [separate repository](https://github.com/2captcha/captcha-solver-selenium-python-examples) you can find examples of captcha solving using [Selenium](https://pypi.org/project/selenium/) library. At the moment we have implemented examples of bypassing [reCAPTCHA](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/reCAPTCHA), [hCaptcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/hCaptcha), [normal captcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/normal_captcha) (image captcha) and [text captcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/text_captcha) using Selenium. + ## Useful articles - Amazon captcha solver: Code example for bypassing the [Amazon captcha](https://2captcha.com/blog/amazon-captcha-solving)