Initial commit, very few changes from orca 45. Added xfce4-notification daemon support.

This commit is contained in:
Storm Dragon
2024-10-16 17:06:34 -04:00
parent cef8363cfd
commit a523205ac2
1447 changed files with 1537893 additions and 2 deletions

View File

@ -0,0 +1,53 @@
#!/usr/bin/python
"""Test of Dojo tab container presentation."""
from macaroon.playback import *
import utils
sequence = MacroSequence()
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
sequence.append(KeyComboAction("Tab"))
sequence.append(PauseAction(5000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"1. Tab to tab list",
["BRAILLE LINE: 'Tab 2 page tab'",
" VISIBLE: 'Tab 2 page tab', cursor=1",
"BRAILLE LINE: 'Focus mode'",
" VISIBLE: 'Focus mode', cursor=0",
"SPEECH OUTPUT: 'Tab 2 page tab.'",
"SPEECH OUTPUT: 'Focus mode' voice=system"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"2. Right arrow to next tab",
["BRAILLE LINE: 'Tab 2 page tab'",
" VISIBLE: 'Tab 2 page tab', cursor=1",
"BRAILLE LINE: 'Tab 3 page tab'",
" VISIBLE: 'Tab 3 page tab', cursor=1",
"SPEECH OUTPUT: 'Tab 3 page tab.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Right"))
sequence.append(utils.AssertPresentationAction(
"3. Right arrow to next tab",
["BRAILLE LINE: 'Inlined Sub TabContainer page tab'",
" VISIBLE: 'Inlined Sub TabContainer page ta', cursor=1",
"SPEECH OUTPUT: 'Inlined Sub TabContainer page tab.'"]))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("Tab"))
sequence.append(utils.AssertPresentationAction(
"4. Tab to contents",
["BRAILLE LINE: 'SubTab 2 page tab'",
" VISIBLE: 'SubTab 2 page tab', cursor=1",
"SPEECH OUTPUT: 'SubTab 2 page tab.'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()