Antidetect browser with mobile device emulation and Selenium/Playwright integration. Configure KnoxProxy proxies for desktop and mobile browser profiles.
Launch and create a new profile.
Go to Connection tab, select HTTP proxy.
Server: gw.knoxproxy.com
Port: 7000
Username: your_username
Password: your_passwordCountry in username.
Username: your_username-country-deUse Kameleo built-in proxy checker.
Start the browser profile.
Use Kameleo REST API with Selenium.
# Kameleo Local API creates profile, then connect via Selenium
# Proxy is already configured in the profile"""KnoxProxy + Kameleo -- API-driven profile creation."""
from kameleo.local_api_client import KameleoLocalApiClient
client = KameleoLocalApiClient()
profiles = client.search_base_profiles(device_type="desktop", browser_product="mimic")
profile = client.create_profile(body={
"base_profile_id": profiles[0].id,
"proxy": {
"value": {
"host": "gw.knoxproxy.com",
"port": 7000,
"id": "your_username-country-us",
"secret": "your_password",
}
},
})
client.start_profile(profile.id)Profiles maintain persistent connections. Use session IDs for sticky IPs.
| Problem | Fix |
|---|---|
| Proxy connection failed | Verify settings against KnoxProxy dashboard. |
| Mobile profile geo mismatch | Align -country-{cc} with profile device locale settings. |
USER-country-de-city-berlin-session-profile07Order matters -- geo flags before the session flag. The session name is free text; use the profile ID so the mapping is self-documenting. Password stays as issued; no flags belong there. HTTP on :7000, SOCKS5 on :7001, same credentials.
Yes. Kameleo can emulate Android and iOS devices. Pair with KnoxProxy mobile 4G/5G proxies for authentic mobile identities.
Yes. Use the Kameleo Local API to create profiles with KnoxProxy settings, then automate with Selenium or Playwright.
Kameleo offers native mobile device emulation and Selenium/Playwright integration. It runs on Windows only. Choose based on your platform and automation needs.
Use KnoxProxy mobile 4G/5G proxies for mobile profiles. The carrier-grade IPs match what real mobile devices use.
Free trial on rotating residential -- 5 minutes setup, no credit card.