Enhance your Puppeteer, Playwright, and Selenium scrapers with a powerful suite of tools. Enjoy features like advanced proxy rotation, efficient cooling, seamless CAPTCHA solving, precise browser fingerprinting, and consistent automatic retries for superior scraping capabilities.
Technical integration tutorial >Connect your Puppeteer, Playwright, or Selenium scripts to GoBrowser's browser effortlessly. All proxy and unlocking operations are handled seamlessly in the background.
Technical integration tutorial >
const puppeteer = require('puppeteer-core');
const auth = 'profile_id:token';
async function run(){
let browser;
try {
browser = await puppeteer.connect({
browserWSEndpoint: `wss://${auth}@cloud.g.run:9222`,
});
const page = await browser.newPage();
await page.goto('http://ipgeo.iphey.com/');
const html = await page.content();
console.log(html);
} catch(e){
console.error('run failed', e);
} finally {
await browser.close();
}
}
if (require.main==module)
run();