Skip to content

Commit 11047fb

Browse files
authored
Merge e7a1be4 into d7facd1
2 parents d7facd1 + e7a1be4 commit 11047fb

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

tests/system/libraries/_chromeArgs.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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.

tests/system/robot/chromeTests.robot

Lines changed: 7 additions & 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
@@ -91,9 +91,13 @@ ARIA roleDescription focus
9191
ARIA roleDescription inline browse mode
9292
[Documentation] Read an inline element with a custom role in browse mode
9393
test_ariaRoleDescription_inline_browseMode
94+
# Disabled due to chrome message "To get missing image descriptions, open the context menu."
95+
[Tags] excluded_from_build
9496
ARIA roleDescription block browse mode
9597
[Documentation] Read a block element with a custom role in browse mode
9698
test_ariaRoleDescription_block_browseMode
99+
# Disabled due to chrome message "To get missing image descriptions, open the context menu."
100+
[Tags] excluded_from_build
97101
ARIA roleDescription inline content editable
98102
[Documentation] Read an inline element with a custom role in content editables
99103
test_ariaRoleDescription_inline_contentEditable
@@ -159,9 +163,11 @@ i13307
159163
textParagraphNavigation
160164
[Documentation] Text paragraph navigation
161165
test_textParagraphNavigation
166+
[Tags] excluded_from_build
162167
styleNav
163168
[Documentation] Same style navigation
164169
test_styleNav
170+
[Tags] excluded_from_build
165171
aria-errormessage
166172
[Documentation] Test that aria-errormessage is reported correctly in focus and browse mode
167173
test_ariaErrorMessage

0 commit comments

Comments
 (0)