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,39 @@
#!/usr/bin/python
"""Test of sayAll."""
from macaroon.playback import *
import utils
sequence = MacroSequence()
#sequence.append(WaitForDocLoad())
sequence.append(PauseAction(5000))
sequence.append(utils.StartRecordingAction())
sequence.append(KeyComboAction("KP_Add"))
sequence.append(utils.AssertPresentationAction(
"1. KP_Add to do a SayAll",
["SPEECH OUTPUT: 'Below is a table, with some sample table data'",
"SPEECH OUTPUT: 'this is a caption for this table'",
"SPEECH OUTPUT: 'table with 4 rows 3 columns'",
"SPEECH OUTPUT: 'col1'",
"SPEECH OUTPUT: 'column header'",
"SPEECH OUTPUT: 'col2'",
"SPEECH OUTPUT: 'column header'",
"SPEECH OUTPUT: 'col3'",
"SPEECH OUTPUT: 'column header'",
"SPEECH OUTPUT: '1'",
"SPEECH OUTPUT: '2'",
"SPEECH OUTPUT: '3'",
"SPEECH OUTPUT: '4'",
"SPEECH OUTPUT: '5'",
"SPEECH OUTPUT: '6'",
"SPEECH OUTPUT: '7'",
"SPEECH OUTPUT: '8'",
"SPEECH OUTPUT: '9'",
"SPEECH OUTPUT: 'leaving table.'",
"SPEECH OUTPUT: 'hope the table looks pretty'"]))
sequence.append(utils.AssertionSummaryAction())
sequence.start()