Skip to main content

captcha Scenario 6 — Residential Proxy with Human-Like Typing

Written by RTILA X Engineering Team

Advanced ~10 min
Prerequisites: captcha/3 captcha/4

What You'll Learn

Manage captcha provider fallback logic

Real-World Use Case

Ensuring reliability when a provider fails

LIVE DEMO

Connection via residential proxy: 192.168.1.100:8080

Human-like typing delays: enabled

EXPECTED OUTPUT

RTILA X PROJECT JSON

    {
  "name": "Residential_Proxy_Human_Like_Typing",
  "settings": {
    "urls": [
      "https://learn.rtila.com/scenarios/captcha/6"
    ],
    "proxyEnabled": true
  },
  "datasets": {
    "residential_results": {
      "item_selector": "css=.res-result",
      "properties": [
        {
          "name": "title",
          "type": "text",
          "selector": "css=.res-title"
        },
        {
          "name": "desc",
          "type": "text",
          "selector": "css=.res-desc"
        }
      ]
    }
  },
  "commands": [
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=#res-search"
      }
    },
    {
      "command": "fill",
      "params": {
        "selector": "css=#res-search",
        "value": "vintage watches"
      }
    },
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=#res-submit"
      }
    },
    {
      "command": "click",
      "params": {
        "selector": "css=#res-submit"
      }
    },
    {
      "command": "wait_for_selector",
      "params": {
        "selector": "css=.residential-results"
      }
    },
    {
      "command": "extract_data",
      "params": {
        "dataset": "residential_results"
      }
    }
  ]
}
  

Residential proxies combined with human-like typing delays reduce the risk of bot detection. The automation fills the search field, submits the form, and extracts the returned results.

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 2 learning articles.

Continue Learning

Was this helpful?