Release faster and improve developer productivity. Run hundreds of parallel sessions simultaneously without waiting too long and thinking about memory and CPU consumption
Just change one line in your code to connect Puppeteer, Playwright, or Selenium.
Take advantage of using full-featured headless browsers on scalable platform.
Sign UpIf you're using puppeteer's launch method, simply change it to connect and specify it to use browsercloud.
Use libraries like selenium, webdriver and capybara with browsercloud.
Use our own REST API to get screen-casts, generate PDFs and more, or write your own with functions
const browser = await puppeteer.connect({
browserWSEndpoint: 'wss://chrome.browsercloud.io'
})
const page = await browser.newPage()
await page.goto('https://browsercloud.io')
await page.screenshot({ path: 'screenshot.png' })
browser.close()