We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Browserless.liveURL doesn't work
Docker compose setup of ghcr.io/browserless/chromium on Linux Ubuntu
I'm using puppeteer
const puppeteer = require('puppeteer-core');
const login = async () => { const browser = await puppeteer.connect({browserWSEndpoint: 'ws://xxxxxxxxx:3001/?token=xxxxxxxx&--user-data-dir=~/browserless-cache-123',}); const page = await browser.newPage(); const cdp = await page.createCDPSession(); await page.goto('https://www.gmail.com/'); await page.screenshot({ path: "goodreads.png", fullPage: true }); const { liveURL } = await cdp.send('Browserless.liveURL'); console.log(`Shareable Public URL:`, liveURL); await new Promise((r) => cdp.on('Browserless.liveComplete', r)); browser.close(); }; login().catch((e) => console.log(e));
It returns ProtocolError: Protocol error (Browserless.liveURL): 'Browserless.liveURL' wasn't found
ProtocolError: Protocol error (Browserless.liveURL): 'Browserless.liveURL' wasn't found
The text was updated successfully, but these errors were encountered:
I'm facing the same issue, were you able to find a solution for this @macrochel.
Sorry, something went wrong.
No branches or pull requests
Browserless.liveURL doesn't work
Docker compose setup of ghcr.io/browserless/chromium on Linux Ubuntu
I'm using puppeteer
const puppeteer = require('puppeteer-core');
It returns
ProtocolError: Protocol error (Browserless.liveURL): 'Browserless.liveURL' wasn't found
The text was updated successfully, but these errors were encountered: