File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,12 @@ 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+ " --ash-no-nudges" # Prevents Chrome from showing nudge messages.
20+ " --browser-test" # Enable browser test mode, helps reduce flakey tests
21+ " --disable-default-apps" # Don't show default apps on the new tab page.
22+ " --keep-alive-for-test" # Reduces start/stop time by keeping the app alive with no windows open.
1823 " --suppress-message-center-popups" # prevent popups that may interfere with automated tests.
1924 " --disable-notifications" # prevent notifications that may interfere with automated tests.
2025 " --no-experiments" # Stable behavior is preferred.
Original file line number Diff line number Diff line change 44# For more details see: https://www.gnu.org/licenses/gpl-2.0.html
55*** Settings ***
66Documentation 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
1010Library NvdaLib.py
You can’t perform that action at this time.
0 commit comments