chrome flag "--disable-translate" does not work in latest 6.4.1 CLI #11860
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thanks for filing @alexd-3d!
Chrome recently renamed the As for your headless v. non-headless questions. Yes, the performance characteristics can be different especially for graphics operations. There aren't really any Lighthouse options that can be changed to completely account for this. If running in a server environment virtual display options like xvfb can help run headful Chrome for the most accurate results. The variability docs detail many other environmental factors you may run into that cause systemic differences. |
Beta Was this translation helpful? Give feedback.
Thanks for filing @alexd-3d!
--disable-translate
isn't a Chrome flag and hasn't been for a number of years.Chrome recently renamed the
TranslateUI
flag (which Lighthouse disables by default in 6.4.1) toTranslate
which is why this change might be new to you. Use--chrome-flags="--disable-features=Translate"
.As for your headless v. non-headless questions. Yes, the performance characteristics can be different especially for graphics operations. There aren't really any Lighthouse options that can be changed to completely account for this. If running in a server environment virtual display options like xvfb can help run headful Chrome for the most accurate results.
The variability docs deta…