diff --git a/tests/system/libraries/_chromeArgs.py b/tests/system/libraries/_chromeArgs.py index 4188ea5fcb8..f358caa7349 100644 --- a/tests/system/libraries/_chromeArgs.py +++ b/tests/system/libraries/_chromeArgs.py @@ -16,6 +16,12 @@ def getChromeArgs() -> str: "chrome" # Start Chrome " --no-first-run" # Don't show intro pages for the first run of chrome " --force-renderer-accessibility" # don't rely on chrome detecting a screen reader. + " --force-app-mode" # Hides certain system elements + " --ash-no-nudges" # Prevents Chrome from showing nudge messages. + " --browser-test" # Enable browser test mode, helps reduce flakey tests + " --disable-default-apps" # Don't show default apps on the new tab page. + " --disable-background-networking" # Don't run network requests in the background. + " --keep-alive-for-test" # Reduces start/stop time by keeping the app alive with no windows open. " --suppress-message-center-popups" # prevent popups that may interfere with automated tests. " --disable-notifications" # prevent notifications that may interfere with automated tests. " --no-experiments" # Stable behavior is preferred.