Skip to main content

captcha Scenario 4 — Stealth Browser with Humanoid Mode

Written by RTILA X Engineering Team

Intermediate ~6 min
Prerequisites: captcha/1 captcha/2

What You'll Learn

Detect and solve Turnstile challenges

Real-World Use Case

Automating Cloudflare Turnstile sites

LIVE DEMO

Bot Detection Active

Checking your browser...

EXPECTED OUTPUT

RTILA X PROJECT JSON

    {
  "name": "Stealth_Humanoid_Mode",
  "settings": {
    "urls": [
      "https://learn.rtila.com/scenarios/captcha/4"
    ]
  },
  "datasets": {
    "stealth_data": {
      "item_selector": "css=table.stealth-data tr",
      "properties": [
        {
          "name": "field",
          "type": "text",
          "selector": "css=td:nth-child(1)"
        },
        {
          "name": "value",
          "type": "text",
          "selector": "css=td:nth-child(2)"
        }
      ]
    }
  },
  "commands": [
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=.stealth-content",
        "timeout": 15000
      }
    },
    {
      "command": "extract_data",
      "params": {
        "dataset": "stealth_data"
      }
    }
  ]
}
  

Stealth mode uses browser fingerprint evasion and humanoid mouse movements. The automation waits up to 15 seconds for the detection screen to disappear before extracting the data.

Did you complete this scenario?

Ready to run this automation?

Copy the project JSON above, open RTILA X, create a new project, and paste it.

This scenario covers 1 RTILA X command and is referenced in 1 learning article.

Continue Learning

Was this helpful?