Unblocking Browser
A cloud-based headless browser with built-in stealth, CAPTCHA bypass, and proxies. Test it with code samples and start your project successfully.
Last updated
Was this helpful?
A cloud-based headless browser with built-in stealth, CAPTCHA bypass, and proxies. Test it with code samples and start your project successfully.
Last updated
Was this helpful?
Was this helpful?
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')
print(page.title())
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');
console.log(await page.title());
await browser.close();
})();import puppeteer from 'puppeteer';
(async () => {
const username = 'your-username';
const password = 'your-password';
const endpoint = 'ubc.oxylabs.io';
const browserUrl = `wss://${username}:${password}@${endpoint}`;
const browser = await puppeteer.connect({
browserWSEndpoint: browserUrl
});
const page = await browser.newPage();
await page.goto('https://example.com');
console.log(await page.title());
await browser.close();
})();