Skip to content

External Tools Integration

Multilogin X integrates with popular automation frameworks and tools.

Supported Automation Frameworks

FrameworkTypeConnectionStart Parameter
SeleniumWebDriverHTTP portautomation_type=selenium
PlaywrightCDPWebSocketautomation_type=playwright
PuppeteerCDPWebSocketautomation_type=puppeteer

Connection Methods

Selenium (WebDriver)

Profile start returns a local port. Connect via http://127.0.0.1:PORT:

python
driver = webdriver.Remote(
    command_executor=f"http://127.0.0.1:{port}",
    options=Options()
)

Playwright/Puppeteer (CDP)

Profile start or debugger URL endpoint returns a WebSocket URL:

javascript
// Playwright
const browser = await chromium.connectOverCDP(wsUrl);

// Puppeteer
const browser = await puppeteer.connect({ browserWSEndpoint: wsUrl });

Third-Party Tools

Proxy Providers

Multilogin X supports proxies from any provider that offers:

  • HTTP/HTTPS proxies
  • SOCKS5 proxies
  • Residential / mobile / datacenter proxies

Configure via the Proxy API.

Pre-made cookies can be injected from these target websites:

  • Google, Facebook, Amazon, eBay, Bing, Etsy

See Cookies API.

Browser Extensions

Install extensions from:

  • Chrome Web Store (for Mimic profiles)
  • Firefox Add-ons (for Stealthfox profiles)

See Extensions API.

Integration Flow