Skip to content

Commit

Permalink
add more flags
Browse files Browse the repository at this point in the history
  • Loading branch information
seanbudd committed Jun 12, 2024
1 parent 9d39ab8 commit 88b79f0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/system/libraries/_chromeArgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 88b79f0

Please sign in to comment.