This project is the SadCaptcha Shein Captcha Solver API client. The purpose is to make integrating SadCaptcha into your Selenium, Playwright, or Async Playwright app as simple as one line of code. Instructions for integrating with Selenium, Playwright, and Async Playwright are described below in their respective sections.
The end goal of this tool is to solve every single shein captcha. Currently we are able to solve icon captcha.
The icon captcha requires you to click icons on a canvas in the order they appear in the bar.
- Python >= 3.10
- If using Nodriver - Chromium installed on system. This is the recommended method. Must use chromium, since Google Chrome does not support programmatically loading extensions.
- If using Selenium - Selenium properly installed and in
PATH. - If using Playwright - Playwright must be properly installed with
playwright install. - Stealth plugin - You should use the appropriate
stealthplugin for whichever browser automation framework you are using.- For Selenium, you can use undetected-chromedriver
- For Playwright, you can use playwright-stealth
This project can be installed with pip. Just run the following command:
pip install shein-captcha-solver
make_nodriver_solver
This function will create an noddriver instance patched with the shein Captcha Solver chrome extension.
The extension will automatically detect and solve the captcha in the background, and there is nothing further you need to do.
from shein_captcha_solver.launcher import make_nodriver_solver
async def main():
launch_args = ["--headless=chrome"] # If running headless, use this option, or headless=new
api_key = "YOUR_API_KEY_HERE"
# NOTE: Keyword arguments passed to make_nodriver_solver() are directly passed to nodriver.start()!
driver = await make_nodriver_solver(
api_key,
browser_args=launch_args,
browser_executable_path="/usr/bin/chromium-browser" # IMPORTANT! Must use Chromium for nodriver since Google chrome no longer supports programmatically loading extensions!!
) # Returns nodriver browser
# ... [The rest of your code that accesses shein goes here]
# Now shein captchas will be automatically solved!All keyword arguments passed to make_nodriver_solver() are passed directly to nodriver.start().
Selenium is not reccommended for this since shein has strong bot detection. Use the nodriver package instead.
Import the function make_undetected_chromedriver_solver.
This function will create an undetected chromedriver instance patched with the shein Captcha Solver chrome extension.
The extension will automatically detect and solve the captcha in the background, and there is nothing further you need to do.
from shein_captcha_solver import make_undetected_chromedriver_solver
from selenium_stealth import stealth
from selenium.webdriver import ChromeOptions
import undetected_chromedriver as uc
chrome_options = ChromeOptions()
# chrome_options.add_argument("--headless=chrome") # If running headless, use this option
api_key = "YOUR_API_KEY_HERE"
driver = make_undetected_chromedriver_solver(api_key, options=options) # Returns uc.Chrome instance
stealth(driver) # Add stealth if needed
# ... [The rest of your code that accesses shein goes here]
# Now shein captchas will be automatically solved!You may also pass ChromeOptions to make_undetected_chromedriver_solver(), as well as keyword arguments for uc.Chrome().
Playwright is not reccommended for this since shein has strong bot detection. Use the nodriver package instead.
Import the function make_playwright_solver_context.
This function will create a playwright BrowserContext instance patched with the shein Captcha Solver chrome extension.
The extension will automatically detect and solve the captcha in the background, and there is nothing further you need to do.
from shein_captcha_solver import make_playwright_solver_context
from playwright.sync_api import sync_playwright
# Need this arg if running headless
launch_args = ["--headless=chrome"]
api_key = "YOUR_API_KEY_HERE"
with sync_playwright() as p:
context = make_playwright_solver_context(p, api_key, args=launch_args) # Returns playwright BrowserContext instance
# ... [The rest of your code that accesses shein goes here]
# Now shein captchas will be automatically solved!You may also pass keyword args to this function, which will be passed directly to playwright's call to playwright.chromium.launch_persistent_context().
By default, the user data directory is a tempory directory that is deleted at the end of runtime.
Import the function make_async_playwright_solver_context.
This function will create an async playwright BrowserContext instance patched with the shein Captcha Solver chrome extension.
The extension will automatically detect and solve the captcha in the background, and there is nothing further you need to do.
import asyncio
from playwright.async_api import async_playwright
from shein_captcha_solver import make_async_playwright_solver_context
# Need this arg if running headless
launch_args = ["--headless=chrome"]
async def main():
api_key = "YOUR_API_KEY_HERE"
async with async_playwright() as p:
context = await make_async_playwright_solver_context(p, api_key, args=launch_args) # Returns playwright BrowserContext instance
# ... [The rest of your code that accesses shein goes here]
asyncio.run(main())
# Now shein captchas will be automatically solved!You may also pass keyword args to this function, which will be passed directly to playwright's call to playwright.chromium.launch_persistent_context().
By default, the user data directory is a tempory directory that is deleted at the end of runtime.
- Homepage: https://www.sadcaptcha.com/
- Email: greg@sadcaptcha.com
- Telegram @toughdata