chore: add --disable-search-engine-choice-screen flag to Chromium (#27038)

As per `https://github.com/puppeteer/puppeteer/pull/10880`
This commit is contained in:
Max Schmitt 2023-09-13 18:06:50 +02:00 committed by GitHub
parent bf35390c8d
commit c06ed8c0bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,5 +49,7 @@ export const chromiumSwitches = [
'--use-mock-keychain',
// See https://chromium-review.googlesource.com/c/chromium/src/+/2436773
'--no-service-autorun',
'--export-tagged-pdf'
'--export-tagged-pdf',
// https://chromium-review.googlesource.com/c/chromium/src/+/4853540
'--disable-search-engine-choice-screen',
];