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
It would be great to include Web Vitals as a module.
Web Vitals are included in Google Lighthouse, and it's possible to use Lighthouse with Playwright/Puppeteer, but there are some issues to consider:
maxConnection: 1
TRACING_ALREADY_STARTED
An alternative is to use web-vitals directly, even though it's officially not recommended to be used in such a way. Artillery uses this package (see code). There's also an example of getting the values without any library.
I've created a WIP lighthouse branch with a proof of concept for including Lighthouse.
Further resources:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be great to include Web Vitals as a module.
Web Vitals are included in Google Lighthouse, and it's possible to use Lighthouse with Playwright/Puppeteer, but there are some issues to consider:
maxConnection: 1
), otherwise we get aTRACING_ALREADY_STARTED
errors. See also ☔️ Protocol error (Tracing.start): Tracing is already started GoogleChrome/lighthouse#1091 and LHError: TRACING_ALREADY_STARTED on cucumber/protractor setup GoogleChrome/lighthouse#11321An alternative is to use web-vitals directly, even though it's officially not recommended to be used in such a way. Artillery uses this package (see code). There's also an example of getting the values without any library.
I've created a WIP lighthouse branch with a proof of concept for including Lighthouse.
Further resources:
The text was updated successfully, but these errors were encountered: