Chrome
Unblocking Browser supports two specialized browser environments, one of which is Chrome. Learn more on how to start using it.
Key Features
Connection Details
wss://ubc.oxylabs.ioBasic Usage
from playwright.sync_api import sync_playwright
username = "your-username"
password = "your-password"
endpoint = "ubc.oxylabs.io"
browser_url = f"wss://{username}:{password}@{endpoint}"
with sync_playwright() as p:
browser = p.chromium.connect_over_cdp(browser_url)
page = browser.new_page()
page.goto('https://example.com')
browser.close()import { chromium } from 'playwright';
(async () => {
const username = 'your-username';
const password = 'your-password';
const endpoint = 'ubc.oxylabs.io';
const browserUrl = `wss://${username}:${password}@${endpoint}`;
const browser = await chromium.connectOverCDP(browserUrl);
const page = await browser.newPage();
await page.goto('https://example.com');
await browser.close();
})();United States Proxy Infrastructure
Browser Arguments
Argument
Description
Device Type
Last updated
Was this helpful?

