en · ru
Simple Setup

Ready-to-use browser cluster for parallel execution

Selenium Grid Playwright Puppeteer

Ready-to-use Selenium, Playwright, and CDP for automated web application testing and open data collection

Start for Free

Free monthly credits

Compatibility with official documentation

Ready-made infrastructure

Available in Russia and CIS

xClouds cloud browsers — stacked browser windows running in the cloud
Chromium Edge Safari Firefox Chrome
Compatibility with Selenium, Puppeteer and Playwright

You won't have to rewrite your tests to work with our infrastructure.

Wide programming language support

If you use PHP, Python, JavaScript, TypeScript, Java, .NET (C#), Go, Ruby, Kotlin or other popular programming languages, we'll work well together!

Flexible usage model

You can use our infrastructure gradually to evaluate the workflow before fully migrating. For example, connect it only for new projects.

15-minute integration

No complex setup — just change a few lines in your code! Take any of your scripts and see for yourself with our demo cluster.

Sandbox for experiments

Our infrastructure is a great testing ground for your experiments. Use it to try migrating between testing frameworks and demonstrate capabilities to colleagues.

Partner program

Recommend our platform and earn rewards from your very first referral. Our partner program is built on fair reward conditions and honest relationships.

Run hundreds of tasks simultaneously

Extract data from dozens of sources in parallel

Render web pages in bulk to HTML and PDF

Take screenshots at any resolution for your reports

AI Agents

Give your AI agent a real cloud browser

LangChain, CrewAI, Browser Use, AutoGPT — connect in one line. 1000 free credits included.

from browser_use import Browser, BrowserConfig

browser = Browser(config=BrowserConfig(
    wss_url='wss://playwright.xclouds.dev/v1.58/?api_key=YOUR_API_KEY'
))
# browser-use, LangChain, CrewAI, AutoGPT — all work here
# pip install browser-use langchain-openai
from langchain_openai import ChatOpenAI
from browser_use import Agent, Browser, BrowserConfig

agent = Agent(
    task="Find the latest AI news",
    llm=ChatOpenAI(model="gpt-4o"),
    browser=Browser(config=BrowserConfig(
        wss_url='wss://playwright.xclouds.dev/v1.58/?api_key=YOUR_API_KEY'
    ))
)
import asyncio; asyncio.run(agent.run())
# pip install crewai browser-use langchain-openai
from browser_use import Browser, BrowserConfig
from browser_use.agent.service import Agent as BrowserAgent
from langchain_openai import ChatOpenAI

browser = Browser(config=BrowserConfig(
    wss_url='wss://playwright.xclouds.dev/v1.58/?api_key=YOUR_API_KEY'
))
# Pass browser to your CrewAI BrowserUseTool
# Set PLAYWRIGHT_SERVER_URL in .env:
# wss://playwright.xclouds.dev/v1.58/?api_key=YOUR_API_KEY

# Or direct Playwright connection:
from playwright.sync_api import sync_playwright

with sync_playwright() as p:
    browser = p.chromium.connect(
        ws_endpoint='wss://playwright.xclouds.dev/v1.58/?api_key=YOUR_API_KEY'
    )