Skip to main content

stealth Scenario 3 — Stealth Profile with Humanoid Typing

Written by RTILA X Engineering Team

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

What You'll Learn

Combine stealth settings with captcha solving

Real-World Use Case

Maximising success on heavily protected sites

LIVE DEMO

Humanoid mode: enabled, Sensitivity: medium, Typing delay: 150ms
EXPECTED OUTPUT

RTILA X PROJECT JSON

    {
  "name": "Stealth_Humanoid_Typing",
  "settings": {
    "urls": [
      "https://learn.rtila.com/scenarios/stealth/3"
    ]
  },
  "datasets": {
    "humanoid_results": {
      "item_selector": "css=.humanoid-result",
      "properties": [
        {
          "name": "title",
          "type": "text",
          "selector": "css=.humanoid-result-title"
        }
      ]
    }
  },
  "commands": [
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=#humanoid-search"
      }
    },
    {
      "command": "fill",
      "params": {
        "selector": "css=#humanoid-search",
        "value": "AI automation"
      }
    },
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=#humanoid-submit"
      }
    },
    {
      "command": "click",
      "params": {
        "selector": "css=#humanoid-submit"
      }
    },
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=.humanoid-results"
      }
    },
    {
      "command": "extract_data",
      "params": {
        "dataset": "humanoid_results"
      }
    }
  ]
}
  

Humanoid typing adds natural delays to input commands. This reduces the likelihood of fingerprinting or rate-limit challenges during automated form submissions.

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 2 RTILA X commands and is referenced in 1 learning article.

Continue Learning

Was this helpful?