Skip to content

Commit acb9efa

Browse files
authored
Merge 88b79f0 into d7facd1
2 parents d7facd1 + 88b79f0 commit acb9efa

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

tests/system/libraries/_chromeArgs.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ def getChromeArgs() -> str:
1414
"""
1515
return (
1616
"chrome" # Start Chrome
17+
" --no-first-run" # Don't show intro pages for the first run of chrome
1718
" --force-renderer-accessibility" # don't rely on chrome detecting a screen reader.
19+
" --force-app-mode" # Hides certain system elements
20+
" --ash-no-nudges" # Prevents Chrome from showing nudge messages.
21+
" --browser-test" # Enable browser test mode, helps reduce flakey tests
22+
" --disable-default-apps" # Don't show default apps on the new tab page.
23+
" --disable-background-networking" # Don't run network requests in the background.
24+
" --keep-alive-for-test" # Reduces start/stop time by keeping the app alive with no windows open.
1825
" --suppress-message-center-popups" # prevent popups that may interfere with automated tests.
1926
" --disable-notifications" # prevent notifications that may interfere with automated tests.
2027
" --no-experiments" # Stable behavior is preferred.

tests/system/robot/chromeTests.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# For more details see: https://www.gnu.org/licenses/gpl-2.0.html
55
*** Settings ***
66
Documentation HTML test cases in Chrome
7-
Force Tags NVDA smoke test browser chrome excluded_from_build
7+
Force Tags NVDA smoke test browser chrome
88
99
# for start & quit in Test Setup and Test Test Teardown
1010
Library NvdaLib.py

0 commit comments

Comments
 (0)