Adam Raine
Adam Raine
This is the page I was testing on: ```html Screen size: function render() { const height = document.getElementById('height'); const width = document.getElementById('width'); height.textContent = window.screen.height; width.textContent = window.screen.width; } render();...
I made a min repro with puppeteer: ```js import puppeteer from 'puppeteer'; const browser = await puppeteer.launch({ executablePath: process.env.CHROME_PATH, headless: false, ignoreDefaultArgs: ['--enable-automation'], }); const page = await browser.newPage(); const...
https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/3710871 works as a bandaid but I already raised this as a bug in CDP.
The workaround for DevTools will land in M105. This still affects things like user flows so I'm gonna leave the issue open. Maybe there is a workaround but hopefully there...
> Should Lighthouse return a score of 1 (aka pass) if a site is correctly using facades rather than notApplicable? If someone designs their own facade solution for something like...
Try ```sh lighthouse --chrome-flags="--headless" --extra-headers='{"Authorization":"Bearer tokenexample"}' https://example.com ```` You shouldn't need to escape `"` characters inside of `'...'`
I've noticed some differences between how Powershell and Zsh handle the quotes here. @andonimuruamendiaraz that doesn't look like a valid Lighthouse version, can you please double check what version you...
Looks like this is an open bug on CSP evaluator https://github.com/google/csp-evaluator/issues/34
Yeah, I'll ping for an npm release
Also worth noting that the new Lighthouse API on master can accept a puppeteer page to address this use case. **This new API is experimental and will be released in...